From 2405930cd108dd101d6601d5fc5afeec133d0b73 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 11 Sep 2025 11:10:16 +0200 Subject: [PATCH 1/7] Added plugin for collab schema migration --- packages/core/src/editor/BlockNoteEditor.ts | 7 ++ .../core/src/editor/BlockNoteExtensions.ts | 4 +- .../SchemaMigrationExtension.ts | 74 ++++++++++++++++++ .../schemaMigration/migrationRules/index.ts | 4 + .../migrationRules/migrationRule.ts | 4 + .../migrationRules/moveColorAttributes.ts | 78 +++++++++++++++++++ 6 files changed, 170 insertions(+), 1 deletion(-) create mode 100644 packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationExtension.ts create mode 100644 packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts create mode 100644 packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/migrationRule.ts create mode 100644 packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts index 2b8175a89e..f79e5d7c24 100644 --- a/packages/core/src/editor/BlockNoteEditor.ts +++ b/packages/core/src/editor/BlockNoteEditor.ts @@ -586,6 +586,12 @@ export class BlockNoteEditor< }; }; + public readonly collaboration: BlockNoteEditorOptions< + BSchema, + ISchema, + SSchema + >["collaboration"]; + public static create< BSchema extends BlockSchema = DefaultBlockSchema, ISchema extends InlineContentSchema = DefaultInlineContentSchema, @@ -623,6 +629,7 @@ export class BlockNoteEditor< ); } + this.collaboration = options.collaboration; this.dictionary = options.dictionary || en; this.settings = { tables: { diff --git a/packages/core/src/editor/BlockNoteExtensions.ts b/packages/core/src/editor/BlockNoteExtensions.ts index 7258dc1130..d258c5515f 100644 --- a/packages/core/src/editor/BlockNoteExtensions.ts +++ b/packages/core/src/editor/BlockNoteExtensions.ts @@ -13,8 +13,10 @@ import type { ThreadStore } from "../comments/index.js"; import { BackgroundColorExtension } from "../extensions/BackgroundColor/BackgroundColorExtension.js"; import { BlockChangePlugin } from "../extensions/BlockChange/BlockChangePlugin.js"; import { CursorPlugin } from "../extensions/Collaboration/CursorPlugin.js"; +import { ForkYDocPlugin } from "../extensions/Collaboration/ForkYDocPlugin.js"; import { SyncPlugin } from "../extensions/Collaboration/SyncPlugin.js"; import { UndoPlugin } from "../extensions/Collaboration/UndoPlugin.js"; +import { SchemaMigrationPlugin } from "../extensions/Collaboration/schemaMigration/SchemaMigrationExtension.js"; import { CommentMark } from "../extensions/Comments/CommentMark.js"; import { CommentsPlugin } from "../extensions/Comments/CommentsPlugin.js"; import { FilePanelProsemirrorPlugin } from "../extensions/FilePanel/FilePanelPlugin.js"; @@ -58,7 +60,6 @@ import type { SupportedExtension, } from "./BlockNoteEditor.js"; import { BlockNoteSchema } from "./BlockNoteSchema.js"; -import { ForkYDocPlugin } from "../extensions/Collaboration/ForkYDocPlugin.js"; type ExtensionOptions< BSchema extends BlockSchema, @@ -127,6 +128,7 @@ export const getBlockNoteExtensions = < editor: opts.editor, collaboration: opts.collaboration, }); + ret["schemaMigrationPlugin"] = new SchemaMigrationPlugin(opts.editor); } // Note: this is pretty hardcoded and will break when user provides plugins with same keys. diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationExtension.ts b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationExtension.ts new file mode 100644 index 0000000000..73799cb863 --- /dev/null +++ b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationExtension.ts @@ -0,0 +1,74 @@ +import { Plugin, PluginKey } from "@tiptap/pm/state"; +import * as Y from "yjs"; + +import migrationRules from "./migrationRules/index.js"; +import { BlockNoteExtension } from "../../../editor/BlockNoteExtension.js"; +import { BlockNoteEditor } from "../../../editor/BlockNoteEditor.js"; + +// This plugin allows us to update collaboration YDocs whenever BlockNote's +// underlying ProseMirror schema changes. The plugin reads the current Yjs +// fragment and dispatches additional transactions to the ProseMirror state, in +// case things are found in the fragment that don't adhere to the editor schema +// and need to be fixed. These fixes are defined as `MigrationRule`s within the +// `migrationRules` directory. +export class SchemaMigrationPlugin extends BlockNoteExtension { + public static key() { + return "schemaMigrationPlugin"; + } + + constructor(editor: BlockNoteEditor) { + const pluginKey = new PluginKey(SchemaMigrationPlugin.key()); + + super(); + this.addProsemirrorPlugin( + new Plugin({ + key: pluginKey, + // Plugin state used to ensure the migration transactions only run + // once, when the initial fragment is loaded. + state: { + init: () => ({ migrationDone: false }), + apply: (tr, oldPluginState) => { + const newPluginState = tr.getMeta(pluginKey); + if (newPluginState) { + return newPluginState; + } + + return oldPluginState; + }, + }, + appendTransaction: (transactions, _oldState, newState) => { + if (pluginKey.getState(newState).migrationDone) { + return undefined; + } + + const ySyncPlugin: Plugin<{ doc: Y.XmlFragment["doc"] }> | undefined = + (editor.extensions["ySyncPlugin"] as BlockNoteExtension | undefined) + ?.plugins[0]; + if (!ySyncPlugin) { + return undefined; + } + + if ( + transactions.length !== 1 || + !transactions[0].getMeta(ySyncPlugin) + ) { + return undefined; + } + + const fragment = editor.collaboration?.fragment; + if (!fragment) { + return undefined; + } + + const tr = newState.tr; + for (const migrationRule of migrationRules) { + migrationRule(fragment, tr); + } + tr.setMeta(pluginKey, { migrationDone: true }); + + return tr; + }, + }), + ); + } +} diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts new file mode 100644 index 0000000000..4e4c044d82 --- /dev/null +++ b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts @@ -0,0 +1,4 @@ +import { MigrationRule } from "./MigrationRule.js"; +import { moveColorAttributes } from "./moveColorAttributes.js"; + +export default [moveColorAttributes] as MigrationRule[]; diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/migrationRule.ts b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/migrationRule.ts new file mode 100644 index 0000000000..ba0b77220f --- /dev/null +++ b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/migrationRule.ts @@ -0,0 +1,4 @@ +import { Transaction } from "@tiptap/pm/state"; +import * as Y from "yjs"; + +export type MigrationRule = (fragment: Y.XmlFragment, tr: Transaction) => void; diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts new file mode 100644 index 0000000000..2849bb517f --- /dev/null +++ b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts @@ -0,0 +1,78 @@ +import * as Y from "yjs"; + +import { MigrationRule } from "./MigrationRule.js"; +import { defaultProps } from "../../../../blocks/defaultProps.js"; + +// Helper function to recursively traverse a `Y.XMLElement` and its descendant +// elements. +const traverseElement = ( + rootElement: Y.XmlElement, + cb: (element: Y.XmlElement) => void, +) => { + cb(rootElement); + rootElement.forEach((element) => { + if (element instanceof Y.XmlElement) { + traverseElement(element, cb); + } + }); +}; + +// Moves `textColor` and `backgroundColor` attributes from `blockContainer` +// nodes to their child `blockContent` nodes. This is due to a schema change +// introduced in PR #TODO. +export const moveColorAttributes: MigrationRule = (fragment, tr) => { + // Stores necessary info for all `blockContainer` nodes which still have + // `textColor` or `backgroundColor` attributes that need to be moved. + const targetBlockContainers: Record< + string, + { + textColor?: string; + backgroundColor?: string; + } + > = {}; + + // Finds all elements which still have `textColor` or `backgroundColor` + // attributes in the current Yjs fragment. + fragment.forEach((element) => { + if (element instanceof Y.XmlElement) { + traverseElement(element, (element) => { + if ( + element.nodeName === "blockContainer" && + element.hasAttribute("id") + ) { + const colors = { + textColor: element.getAttribute("textColor"), + backgroundColor: element.getAttribute("backgroundColor"), + }; + + if (colors.textColor === defaultProps.textColor.default) { + colors.textColor = undefined; + } + if (colors.backgroundColor === defaultProps.backgroundColor.default) { + colors.backgroundColor = undefined; + } + + if (colors.textColor || colors.backgroundColor) { + targetBlockContainers[element.getAttribute("id")!] = colors; + } + } + }); + } + }); + + // Appends transactions to add the `textColor` and `backgroundColor` + // attributes found on each `blockContainer` node to move them to the child + // `blockContent` node. + tr.doc.descendants((node, pos) => { + if ( + node.type.name === "blockContainer" && + targetBlockContainers[node.attrs.id] + ) { + tr = tr.setNodeMarkup( + pos + 1, + undefined, + targetBlockContainers[node.attrs.id], + ); + } + }); +}; From 0981d6928380fa8c0ec61efb9e230b4532e78c30 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 11 Sep 2025 11:40:41 +0200 Subject: [PATCH 2/7] Moved color props to block content nodes --- packages/core/src/blocks/defaultProps.ts | 57 +++++----- .../BackgroundColorExtension.ts | 2 +- .../schemaMigration/migrationRules/index.ts | 2 +- .../migrationRules/moveColorAttributes.ts | 2 +- .../TextColor/TextColorExtension.ts | 2 +- packages/core/src/schema/blocks/internal.ts | 101 +++++++++--------- packages/react/src/schema/ReactBlockSpec.tsx | 3 +- 7 files changed, 86 insertions(+), 83 deletions(-) diff --git a/packages/core/src/blocks/defaultProps.ts b/packages/core/src/blocks/defaultProps.ts index 189a7e5f58..46c5417a85 100644 --- a/packages/core/src/blocks/defaultProps.ts +++ b/packages/core/src/blocks/defaultProps.ts @@ -21,16 +21,27 @@ export const defaultProps = { export type DefaultProps = Props; -// Default props which are set on `blockContainer` nodes rather than -// `blockContent` nodes. Ensures that they are not redundantly added to -// a custom block's TipTap node attributes. -export const inheritedProps = ["backgroundColor", "textColor"]; - -// TODO: Move text/background color props from `blockContainer` node to -// `blockContent`. export const parseDefaultProps = (element: HTMLElement) => { const props: Partial = {}; + // If the `data-` attribute is found, set the prop to the value, as this most + // likely means the parsed element was exported by BlockNote originally. + // Otherwise, just use whatever is found in the inline styles, if anything. + if (element.hasAttribute("data-background-color")) { + props.backgroundColor = element.getAttribute("data-background-color")!; + } else if (element.style.backgroundColor) { + props.backgroundColor = element.style.backgroundColor; + } + + // If the `data-` attribute is found, set the prop to the value, as this most + // likely means the parsed element was exported by BlockNote originally. + // Otherwise, just use whatever is found in the inline styles, if anything. + if (element.hasAttribute("data-text-color")) { + props.textColor = element.getAttribute("data-text-color")!; + } else if (element.style.color) { + props.textColor = element.style.color; + } + props.textAlignment = defaultProps.textAlignment.values.includes( element.style.textAlign as DefaultProps["textAlignment"], ) @@ -48,27 +59,23 @@ export const addDefaultPropsExternalHTML = ( props.backgroundColor && props.backgroundColor !== defaultProps.backgroundColor.default ) { - if (props.backgroundColor in COLORS_DEFAULT) { - element.style.setProperty( - `--blocknote-background-${props.backgroundColor}`, - COLORS_DEFAULT[props.backgroundColor].background, - ); - element.style.backgroundColor = `var(--blocknote-background-${props.backgroundColor})`; - } else { - element.style.backgroundColor = props.backgroundColor; - } + // The color can be any string. If the string matches one of the default + // theme color names, set the theme color. Otherwise, set the color as-is + // (may be a CSS color name, hex value, RGB value, etc). + element.style.backgroundColor = + props.backgroundColor in COLORS_DEFAULT + ? COLORS_DEFAULT[props.backgroundColor].background + : props.backgroundColor; } if (props.textColor && props.textColor !== defaultProps.textColor.default) { - if (props.textColor in COLORS_DEFAULT) { - element.style.setProperty( - `--blocknote-text-${props.textColor}`, - COLORS_DEFAULT[props.textColor].text, - ); - element.style.color = `var(--blocknote-text-${props.textColor})`; - } else { - element.style.color = props.textColor; - } + // The color can be any string. If the string matches one of the default + // theme color names, set the theme color. Otherwise, set the color as-is + // (may be a CSS color name, hex value, RGB value, etc). + element.style.color = + props.textColor in COLORS_DEFAULT + ? COLORS_DEFAULT[props.textColor].text + : props.textColor; } if ( diff --git a/packages/core/src/extensions/BackgroundColor/BackgroundColorExtension.ts b/packages/core/src/extensions/BackgroundColor/BackgroundColorExtension.ts index 61a8b8c14b..1ba499de7d 100644 --- a/packages/core/src/extensions/BackgroundColor/BackgroundColorExtension.ts +++ b/packages/core/src/extensions/BackgroundColor/BackgroundColorExtension.ts @@ -7,7 +7,7 @@ export const BackgroundColorExtension = Extension.create({ addGlobalAttributes() { return [ { - types: ["blockContainer", "tableCell", "tableHeader"], + types: ["tableCell", "tableHeader"], attributes: { backgroundColor: getBackgroundColorAttribute(), }, diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts index 4e4c044d82..04957523f5 100644 --- a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts +++ b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/index.ts @@ -1,4 +1,4 @@ -import { MigrationRule } from "./MigrationRule.js"; +import { MigrationRule } from "./migrationRule.js"; import { moveColorAttributes } from "./moveColorAttributes.js"; export default [moveColorAttributes] as MigrationRule[]; diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts index 2849bb517f..69dc3b5964 100644 --- a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts +++ b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts @@ -1,6 +1,6 @@ import * as Y from "yjs"; -import { MigrationRule } from "./MigrationRule.js"; +import { MigrationRule } from "./migrationRule.js"; import { defaultProps } from "../../../../blocks/defaultProps.js"; // Helper function to recursively traverse a `Y.XMLElement` and its descendant diff --git a/packages/core/src/extensions/TextColor/TextColorExtension.ts b/packages/core/src/extensions/TextColor/TextColorExtension.ts index eddb96f9e7..73357e1519 100644 --- a/packages/core/src/extensions/TextColor/TextColorExtension.ts +++ b/packages/core/src/extensions/TextColor/TextColorExtension.ts @@ -7,7 +7,7 @@ export const TextColorExtension = Extension.create({ addGlobalAttributes() { return [ { - types: ["blockContainer", "tableCell", "tableHeader"], + types: ["table", "tableCell", "tableHeader"], attributes: { textColor: getTextColorAttribute(), }, diff --git a/packages/core/src/schema/blocks/internal.ts b/packages/core/src/schema/blocks/internal.ts index 51237e512e..5e7ee54f0c 100644 --- a/packages/core/src/schema/blocks/internal.ts +++ b/packages/core/src/schema/blocks/internal.ts @@ -1,6 +1,5 @@ import { Attribute, Attributes, Editor, Node } from "@tiptap/core"; import { defaultBlockToHTML } from "../../blocks/defaultBlockHelpers.js"; -import { inheritedProps } from "../../blocks/defaultProps.js"; import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockNoteExtension } from "../../editor/BlockNoteExtension.js"; import { mergeCSSClasses } from "../../util/browser.js"; @@ -21,64 +20,62 @@ import { export function propsToAttributes(propSchema: PropSchema): Attributes { const tiptapAttributes: Record = {}; - Object.entries(propSchema) - .filter(([name, _spec]) => !inheritedProps.includes(name)) - .forEach(([name, spec]) => { - tiptapAttributes[name] = { - default: spec.default, - keepOnSplit: true, - // Props are displayed in kebab-case as HTML attributes. If a prop's - // value is the same as its default, we don't display an HTML - // attribute for it. - parseHTML: (element) => { - const value = element.getAttribute(camelToDataKebab(name)); - - if (value === null) { - return null; + Object.entries(propSchema).forEach(([name, spec]) => { + tiptapAttributes[name] = { + default: spec.default, + keepOnSplit: true, + // Props are displayed in kebab-case as HTML attributes. If a prop's + // value is the same as its default, we don't display an HTML + // attribute for it. + parseHTML: (element) => { + const value = element.getAttribute(camelToDataKebab(name)); + + if (value === null) { + return null; + } + + if ( + (spec.default === undefined && spec.type === "boolean") || + (spec.default !== undefined && typeof spec.default === "boolean") + ) { + if (value === "true") { + return true; } - if ( - (spec.default === undefined && spec.type === "boolean") || - (spec.default !== undefined && typeof spec.default === "boolean") - ) { - if (value === "true") { - return true; - } - - if (value === "false") { - return false; - } - - return null; + if (value === "false") { + return false; } - if ( - (spec.default === undefined && spec.type === "number") || - (spec.default !== undefined && typeof spec.default === "number") - ) { - const asNumber = parseFloat(value); - const isNumeric = - !Number.isNaN(asNumber) && Number.isFinite(asNumber); + return null; + } - if (isNumeric) { - return asNumber; - } + if ( + (spec.default === undefined && spec.type === "number") || + (spec.default !== undefined && typeof spec.default === "number") + ) { + const asNumber = parseFloat(value); + const isNumeric = + !Number.isNaN(asNumber) && Number.isFinite(asNumber); - return null; + if (isNumeric) { + return asNumber; } - return value; - }, - renderHTML: (attributes) => { - // don't render to html if the value is the same as the default - return attributes[name] !== spec.default - ? { - [camelToDataKebab(name)]: attributes[name], - } - : {}; - }, - }; - }); + return null; + } + + return value; + }, + renderHTML: (attributes) => { + // don't render to html if the value is the same as the default + return attributes[name] !== spec.default + ? { + [camelToDataKebab(name)]: attributes[name], + } + : {}; + }, + }; + }); return tiptapAttributes; } @@ -174,7 +171,7 @@ export function wrapInBlockStructure< for (const [prop, value] of Object.entries(blockProps)) { const spec = propSchema[prop]; const defaultValue = spec.default; - if (!inheritedProps.includes(prop) && value !== defaultValue) { + if (value !== defaultValue) { blockContent.setAttribute(camelToDataKebab(prop), value); } } diff --git a/packages/react/src/schema/ReactBlockSpec.tsx b/packages/react/src/schema/ReactBlockSpec.tsx index fbb23da03d..4abf2a116b 100644 --- a/packages/react/src/schema/ReactBlockSpec.tsx +++ b/packages/react/src/schema/ReactBlockSpec.tsx @@ -8,7 +8,6 @@ import { camelToDataKebab, CustomBlockImplementation, getBlockFromPos, - inheritedProps, mergeCSSClasses, Props, PropSchema, @@ -104,7 +103,7 @@ export function BlockContentWrapper< Object.entries(props.blockProps) .filter(([prop, value]) => { const spec = props.propSchema[prop]; - return !inheritedProps.includes(prop) && value !== spec.default; + return value !== spec.default; }) .map(([prop, value]) => { return [camelToDataKebab(prop), value]; From 90daa570af5f6ddb06703e3630d321afefc2808c Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 11 Sep 2025 13:11:31 +0200 Subject: [PATCH 3/7] Fixed export for list items and updated unit test snapshots --- .../html/util/serializeBlocksExternalHTML.ts | 4 +- .../blocks/ListItem/BulletListItem/block.ts | 10 +- .../blocks/ListItem/CheckListItem/block.ts | 9 +- .../blocks/ListItem/NumberedListItem/block.ts | 10 +- .../blocks/ListItem/ToggleListItem/block.ts | 12 +- .../__snapshots__/text/html/basicBlocks.html | 4 +- .../text/html/basicBlocksWithProps.html | 17 +- .../blocknoteHTML/complex/misc.html | 38 +- .../blocknoteHTML/paragraph/styled.html | 18 +- .../__snapshots__/html/complex/misc.html | 9 +- .../__snapshots__/html/lists/basic.html | 12 +- .../__snapshots__/html/lists/nested.html | 12 +- .../__snapshots__/html/paragraph/styled.html | 4 +- .../nodes/codeBlock/contains-newlines.json | 2 - .../nodes/codeBlock/defaultLanguage.json | 2 - .../__snapshots__/nodes/codeBlock/empty.json | 2 - .../__snapshots__/nodes/codeBlock/python.json | 2 - .../__snapshots__/nodes/complex/misc.json | 12 +- .../__snapshots__/nodes/file/basic.json | 3 +- .../__snapshots__/nodes/file/button.json | 3 +- .../__snapshots__/nodes/file/nested.json | 6 +- .../__snapshots__/nodes/file/noCaption.json | 3 +- .../__snapshots__/nodes/file/noName.json | 3 +- .../__snapshots__/nodes/hardbreak/basic.json | 4 +- .../nodes/hardbreak/between-links.json | 4 +- .../__snapshots__/nodes/hardbreak/end.json | 4 +- .../__snapshots__/nodes/hardbreak/link.json | 4 +- .../nodes/hardbreak/multiple.json | 4 +- .../__snapshots__/nodes/hardbreak/only.json | 4 +- .../__snapshots__/nodes/hardbreak/start.json | 4 +- .../__snapshots__/nodes/hardbreak/styles.json | 4 +- .../__snapshots__/nodes/image/basic.json | 3 +- .../__snapshots__/nodes/image/button.json | 3 +- .../__snapshots__/nodes/image/nested.json | 6 +- .../__snapshots__/nodes/image/noCaption.json | 3 +- .../__snapshots__/nodes/image/noName.json | 3 +- .../__snapshots__/nodes/image/noPreview.json | 3 +- .../mentionWithToExternalHTML.json | 4 +- .../tagWithoutToExternalHTML.json | 4 +- .../__snapshots__/nodes/link/adjacent.json | 4 +- .../__snapshots__/nodes/link/basic.json | 4 +- .../__snapshots__/nodes/link/styled.json | 4 +- .../__snapshots__/nodes/lists/basic.json | 24 +- .../__snapshots__/nodes/lists/nested.json | 24 +- .../__snapshots__/nodes/malformed/JSON.json | 4 +- .../__snapshots__/nodes/pageBreak/basic.json | 2 - .../__snapshots__/nodes/paragraph/basic.json | 4 +- .../__snapshots__/nodes/paragraph/empty.json | 4 +- .../nodes/paragraph/lineBreaks.json | 4 +- .../__snapshots__/nodes/paragraph/nested.json | 12 +- .../__snapshots__/nodes/paragraph/styled.json | 4 +- .../nodes/table/allColWidths.json | 5 +- .../__snapshots__/nodes/table/basic.json | 5 +- .../__snapshots__/nodes/table/headerCols.json | 5 +- .../__snapshots__/nodes/table/headerRows.json | 5 +- .../nodes/table/mixedCellColors.json | 5 +- .../nodes/table/mixedColWidths.json | 5 +- .../nodes/table/mixedRowspansAndColspans.json | 5 +- .../exportParseEqualityTestInstances.ts | 78 +-- .../html/backgroundColorProp.json | 36 ++ .../parse/__snapshots__/html/googleDocs.json | 32 +- .../__snapshots__/html/textColorProp.json | 36 ++ .../parse/parseTestInstances.ts | 32 +- .../cutBlocks/childBlockWithOffsets.json | 2 +- .../childToNextParentBlockWithOffsets.json | 4 +- ...ildToNextParentsChildBlockWithOffsets.json | 6 +- .../cutBlocks/multipleBlocksWithOffsets.json | 4 +- .../multipleChildBlocksWithOffsets.json | 4 +- .../parentToChildBlockWithOffsets.json | 4 +- .../cutBlocks/singleBlockWithOffsets.json | 2 +- .../regular/acrossBlockWithChildren.json | 8 +- .../regular/blockWithoutContent.json | 4 +- .../__snapshots__/regular/childBlock.json | 2 +- .../regular/childToNextParentBlock.json | 4 +- .../regular/childToNextParentsChildBlock.json | 6 +- .../__snapshots__/regular/multipleBlocks.json | 4 +- .../regular/multipleChildBlocks.json | 4 +- .../regular/parentToChildBlock.json | 4 +- .../__snapshots__/regular/singleBlock.json | 2 +- .../__snapshots__/end/basic.txt | 544 +++++++++--------- .../__snapshots__/start/basic.txt | 410 ++++++------- .../blocknoteHTML/customParagraph/styled.html | 18 +- .../simpleCustomParagraph/styled.html | 18 +- .../html/customParagraph/styled.html | 2 +- .../html/simpleCustomParagraph/styled.html | 2 +- 85 files changed, 837 insertions(+), 822 deletions(-) create mode 100644 tests/src/unit/core/formatConversion/parse/__snapshots__/html/backgroundColorProp.json create mode 100644 tests/src/unit/core/formatConversion/parse/__snapshots__/html/textColorProp.json diff --git a/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts b/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts index ae3197f321..ed059858ac 100644 --- a/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts +++ b/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts @@ -227,9 +227,7 @@ function serializeBlock< } fragment.append(list); } - const li = doc.createElement("li"); - li.append(elementFragment); - fragment.lastChild!.appendChild(li); + fragment.lastChild!.appendChild(elementFragment); } else { fragment.append(elementFragment); } diff --git a/packages/core/src/blocks/ListItem/BulletListItem/block.ts b/packages/core/src/blocks/ListItem/BulletListItem/block.ts index 56f5714e19..c4dd5913e7 100644 --- a/packages/core/src/blocks/ListItem/BulletListItem/block.ts +++ b/packages/core/src/blocks/ListItem/BulletListItem/block.ts @@ -63,12 +63,14 @@ export const createBulletListItemBlockSpec = createBlockSpec( }; }, toExternalHTML(block) { - const dom = document.createElement("p"); - addDefaultPropsExternalHTML(block.props, dom); + const li = document.createElement("li"); + const p = document.createElement("p"); + addDefaultPropsExternalHTML(block.props, li); + li.appendChild(p); return { - dom, - contentDOM: dom, + dom: li, + contentDOM: p, }; }, }, diff --git a/packages/core/src/blocks/ListItem/CheckListItem/block.ts b/packages/core/src/blocks/ListItem/CheckListItem/block.ts index 9dd5a1aab9..5a83d869b8 100644 --- a/packages/core/src/blocks/ListItem/CheckListItem/block.ts +++ b/packages/core/src/blocks/ListItem/CheckListItem/block.ts @@ -71,7 +71,7 @@ export const createCheckListItemBlockSpec = createBlockSpec( // into a single one so that ProseMirror can parse everything correctly. parseContent: ({ el, schema }) => getListItemContent(el, schema, "checkListItem"), - render(block) { + render(block, editor) { const dom = document.createDocumentFragment(); const checkbox = document.createElement("input"); checkbox.type = "checkbox"; @@ -79,6 +79,9 @@ export const createCheckListItemBlockSpec = createBlockSpec( if (block.props.checked) { checkbox.setAttribute("checked", ""); } + checkbox.addEventListener("change", () => { + editor.updateBlock(block, { props: { checked: !block.props.checked } }); + }); // We use a

tag, because for

  • tags we'd need a
      element to put // them in to be semantically correct, which we can't have due to the // schema. @@ -93,7 +96,7 @@ export const createCheckListItemBlockSpec = createBlockSpec( }; }, toExternalHTML(block) { - const dom = document.createDocumentFragment(); + const dom = document.createElement("li"); const checkbox = document.createElement("input"); checkbox.type = "checkbox"; checkbox.checked = block.props.checked; @@ -104,7 +107,7 @@ export const createCheckListItemBlockSpec = createBlockSpec( // them in to be semantically correct, which we can't have due to the // schema. const paragraph = document.createElement("p"); - addDefaultPropsExternalHTML(block.props, paragraph); + addDefaultPropsExternalHTML(block.props, dom); dom.appendChild(checkbox); dom.appendChild(paragraph); diff --git a/packages/core/src/blocks/ListItem/NumberedListItem/block.ts b/packages/core/src/blocks/ListItem/NumberedListItem/block.ts index 9b7728b353..06962603b8 100644 --- a/packages/core/src/blocks/ListItem/NumberedListItem/block.ts +++ b/packages/core/src/blocks/ListItem/NumberedListItem/block.ts @@ -76,12 +76,14 @@ export const createNumberedListItemBlockSpec = createBlockSpec( }; }, toExternalHTML(block) { - const dom = document.createElement("p"); - addDefaultPropsExternalHTML(block.props, dom); + const li = document.createElement("li"); + const p = document.createElement("p"); + addDefaultPropsExternalHTML(block.props, li); + li.appendChild(p); return { - dom, - contentDOM: dom, + dom: li, + contentDOM: p, }; }, }, diff --git a/packages/core/src/blocks/ListItem/ToggleListItem/block.ts b/packages/core/src/blocks/ListItem/ToggleListItem/block.ts index 8cced614ef..d38f7062a1 100644 --- a/packages/core/src/blocks/ListItem/ToggleListItem/block.ts +++ b/packages/core/src/blocks/ListItem/ToggleListItem/block.ts @@ -36,9 +36,15 @@ export const createToggleListItemBlockSpec = createBlockSpec( return { ...toggleWrapper, contentDOM: paragraphEl }; }, toExternalHTML(block) { - const paragraphEl = document.createElement("p"); - addDefaultPropsExternalHTML(block.props, paragraphEl); - return { dom: paragraphEl, contentDOM: paragraphEl }; + const li = document.createElement("li"); + const p = document.createElement("p"); + addDefaultPropsExternalHTML(block.props, li); + li.appendChild(p); + + return { + dom: li, + contentDOM: p, + }; }, }, [ diff --git a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocks.html b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocks.html index 1711bb210e..3659da8923 100644 --- a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocks.html +++ b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocks.html @@ -2,12 +2,12 @@

      Heading 1

      1. -

        Numbered List Item 1

        +

        Numbered List Item 1

      • -

        Bullet List Item 1

        +

        Bullet List Item 1

      • diff --git a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html index 117b7709a2..9c30cd19ad 100644 --- a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html +++ b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html @@ -1,19 +1,16 @@ -

        Paragraph 1

        +

        Paragraph 1

        Heading 1

          -
        1. -

          Numbered List Item 1

          +
        2. +

          Numbered List Item 1

          -
        • -

          Bullet List Item 1

          +
        • +

          Bullet List Item 1

        • -
        • - +
        • +

          Check List Item 1

        diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/complex/misc.html b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/complex/misc.html index 7587f35366..1c596b57f1 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/complex/misc.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/complex/misc.html @@ -1,21 +1,11 @@
        -
        -
        +
        +
        @@ -29,19 +19,13 @@

        -
        -
        -
        +
        +
        +

        Paragraph

        diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/paragraph/styled.html b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/paragraph/styled.html index 5ae4c7b95c..699ad7f460 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/paragraph/styled.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/paragraph/styled.html @@ -1,22 +1,12 @@
        -
        -
        +
        +

        Plain diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/html/complex/misc.html b/tests/src/unit/core/formatConversion/export/__snapshots__/html/complex/misc.html index 4b6ccf35d2..1bbd5644be 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/html/complex/misc.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/html/complex/misc.html @@ -1,4 +1,4 @@ -

        +

        Heading @@ -6,12 +6,9 @@

        Paragraph

        +

        Paragraph

        • -

          +

        \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/basic.html b/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/basic.html index aee1048a87..a2d61d9cdb 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/basic.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/basic.html @@ -1,17 +1,17 @@
        • -

          Bullet List Item 1

          +

          Bullet List Item 1

        • -

          Bullet List Item 2

          +

          Bullet List Item 2

        1. -

          Numbered List Item 1

          +

          Numbered List Item 1

        2. -

          Numbered List Item 2

          +

          Numbered List Item 2

          @@ -19,8 +19,8 @@

          Check List Item 1

          -
        • - +
        • +

          Check List Item 2

        \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/nested.html b/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/nested.html index b2497ae937..19733be107 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/nested.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/html/lists/nested.html @@ -1,22 +1,22 @@
        • -

          Bullet List Item 1

          +

          Bullet List Item 1

        • -

          Bullet List Item 2

          +

          Bullet List Item 2

          1. -

            Numbered List Item 1

            +

            Numbered List Item 1

          2. -

            Numbered List Item 2

            +

            Numbered List Item 2

            • Check List Item 1

            • -
            • - +
            • +

              Check List Item 2

            diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/html/paragraph/styled.html b/tests/src/unit/core/formatConversion/export/__snapshots__/html/paragraph/styled.html index a93a469814..fd10eacf1a 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/html/paragraph/styled.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/html/paragraph/styled.html @@ -1,8 +1,8 @@

            Plain Red Text diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/contains-newlines.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/contains-newlines.json index da4c135551..854c64a68f 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/contains-newlines.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/contains-newlines.json @@ -1,9 +1,7 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/defaultLanguage.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/defaultLanguage.json index 97b0374bfb..e25d8ad37a 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/defaultLanguage.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/defaultLanguage.json @@ -1,9 +1,7 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/empty.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/empty.json index 4fd34ff835..fc526a8406 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/empty.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/empty.json @@ -1,9 +1,7 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/python.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/python.json index 01b6f86580..f663c0876a 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/python.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/codeBlock/python.json @@ -1,9 +1,7 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json index e61ba6dc6c..5689b6b144 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json @@ -1,16 +1,16 @@ [ { "attrs": { - "backgroundColor": "blue", "id": "1", - "textColor": "yellow", }, "content": [ { "attrs": { + "backgroundColor": "blue", "isToggleable": false, "level": 2, "textAlignment": "right", + "textColor": "yellow", }, "content": [ { @@ -44,14 +44,14 @@ "content": [ { "attrs": { - "backgroundColor": "red", "id": "2", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "red", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -66,14 +66,14 @@ }, { "attrs": { - "backgroundColor": "default", "id": "3", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "bulletListItem", }, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/basic.json index 0de31316e1..d6e3e46bc6 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/basic.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "example", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/button.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/button.json index 42be1c0985..01d41abfd9 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/button.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/button.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "", "name": "", "url": "", diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/nested.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/nested.json index f122b855d8..fb51a86937 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/nested.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/nested.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "example", "url": "exampleURL", @@ -18,13 +17,12 @@ "content": [ { "attrs": { - "backgroundColor": "default", "id": "2", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "example", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noCaption.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noCaption.json index 7b9cd6f1c4..9f4e02849d 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noCaption.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noCaption.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "", "name": "example", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noName.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noName.json index 393aff6af8..ef504532ff 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noName.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/file/noName.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/basic.json index 8f3e362113..9f61632bab 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/basic.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/between-links.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/between-links.json index 93e7571b21..174eeecd5b 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/between-links.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/between-links.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/end.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/end.json index 781e539991..8ac49d80e1 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/end.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/end.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/link.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/link.json index aee93b47d3..4ae3cc342b 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/link.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/link.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/multiple.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/multiple.json index b8cd0f19ec..2f47b4bc9b 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/multiple.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/multiple.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/only.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/only.json index 6a1a4d2554..08f5ee78ee 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/only.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/only.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/start.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/start.json index dc2396df1f..72eb111324 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/start.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/start.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/styles.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/styles.json index 034bf8b726..f7f3c35ae8 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/styles.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/hardbreak/styles.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/basic.json index ad2d0f7a69..75e88e240f 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/basic.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "example", "previewWidth": 256, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/button.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/button.json index 3ab8083ff6..5235b9b533 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/button.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/button.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "", "name": "", "previewWidth": undefined, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/nested.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/nested.json index db8fee4b1d..25947e128f 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/nested.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/nested.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "", "previewWidth": 256, @@ -21,13 +20,12 @@ "content": [ { "attrs": { - "backgroundColor": "default", "id": "2", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "", "previewWidth": 256, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noCaption.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noCaption.json index aaa57c857a..e043c3b2b2 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noCaption.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noCaption.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "", "name": "example", "previewWidth": 256, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noName.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noName.json index 10a9c03a69..2fc265f5c4 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noName.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noName.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "", "previewWidth": 256, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noPreview.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noPreview.json index 946ca5f86e..2253492bc0 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noPreview.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/image/noPreview.json @@ -1,13 +1,12 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "caption": "Caption", "name": "example", "previewWidth": 256, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/mentionWithToExternalHTML.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/mentionWithToExternalHTML.json index 441182ba63..b006f6ec56 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/mentionWithToExternalHTML.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/mentionWithToExternalHTML.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/tagWithoutToExternalHTML.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/tagWithoutToExternalHTML.json index 31d20bab59..9072d90228 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/tagWithoutToExternalHTML.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/inlineContent/tagWithoutToExternalHTML.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/adjacent.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/adjacent.json index 13f609f82e..d546271743 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/adjacent.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/adjacent.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/basic.json index a760a4ad4f..3964520c13 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/basic.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/styled.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/styled.json index 2d4dc02bec..84c3a57c95 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/styled.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/link/styled.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/basic.json index 2eae2699c0..6641f05caa 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/basic.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -23,14 +23,14 @@ }, { "attrs": { - "backgroundColor": "default", "id": "2", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -45,15 +45,15 @@ }, { "attrs": { - "backgroundColor": "default", "id": "3", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "start": undefined, "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -68,15 +68,15 @@ }, { "attrs": { - "backgroundColor": "default", "id": "4", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "start": undefined, "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -91,15 +91,15 @@ }, { "attrs": { - "backgroundColor": "default", "id": "5", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "checked": false, "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -114,15 +114,15 @@ }, { "attrs": { - "backgroundColor": "default", "id": "6", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "checked": true, "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/nested.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/nested.json index 7ae7c02b71..b2afe1e965 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/nested.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/lists/nested.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -23,14 +23,14 @@ }, { "attrs": { - "backgroundColor": "default", "id": "2", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -44,15 +44,15 @@ "content": [ { "attrs": { - "backgroundColor": "default", "id": "3", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "start": undefined, "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -67,15 +67,15 @@ }, { "attrs": { - "backgroundColor": "default", "id": "4", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "start": undefined, "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -89,15 +89,15 @@ "content": [ { "attrs": { - "backgroundColor": "default", "id": "5", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "checked": false, "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -112,15 +112,15 @@ }, { "attrs": { - "backgroundColor": "default", "id": "6", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "checked": true, "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/malformed/JSON.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/malformed/JSON.json index 3b3617fe74..b70720d495 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/malformed/JSON.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/malformed/JSON.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/pageBreak/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/pageBreak/basic.json index f054006323..cf77481ba1 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/pageBreak/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/pageBreak/basic.json @@ -1,9 +1,7 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/basic.json index 03c5eb0a1b..d32dcc601e 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/basic.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/empty.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/empty.json index 34dcd51ce9..8fdcafd2e5 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/empty.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/empty.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/lineBreaks.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/lineBreaks.json index 14d1230246..fda9b14014 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/lineBreaks.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/lineBreaks.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/nested.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/nested.json index 8b7532615d..363e14eec7 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/nested.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/nested.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -22,14 +22,14 @@ "content": [ { "attrs": { - "backgroundColor": "default", "id": "2", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -44,14 +44,14 @@ }, { "attrs": { - "backgroundColor": "default", "id": "3", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/styled.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/styled.json index debf389327..282b3bb4d5 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/styled.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/paragraph/styled.json @@ -1,14 +1,14 @@ [ { "attrs": { - "backgroundColor": "pink", "id": "1", - "textColor": "orange", }, "content": [ { "attrs": { + "backgroundColor": "pink", "textAlignment": "center", + "textColor": "orange", }, "content": [ { diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/allColWidths.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/allColWidths.json index 519391c98f..e374217aac 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/allColWidths.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/allColWidths.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/basic.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/basic.json index 8fd5f7f2d3..0ada61eeda 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/basic.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/basic.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerCols.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerCols.json index 3933a56ca3..dbe217c2e2 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerCols.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerCols.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerRows.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerRows.json index dc9ee26a35..6e26fab7fa 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerRows.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/headerRows.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedCellColors.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedCellColors.json index 69b25e9bfa..0fdad86410 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedCellColors.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedCellColors.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedColWidths.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedColWidths.json index 60600bb04e..534ef9e162 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedColWidths.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedColWidths.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedRowspansAndColspans.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedRowspansAndColspans.json index 11fb672923..c7a08f4dad 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedRowspansAndColspans.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/table/mixedRowspansAndColspans.json @@ -1,12 +1,13 @@ [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { + "attrs": { + "textColor": "default", + }, "content": [ { "content": [ diff --git a/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts b/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts index 9f825d04b1..74654d55e9 100644 --- a/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts +++ b/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts @@ -85,45 +85,45 @@ export const exportParseEqualityTestInstancesHTML: TestInstance< }, executeTest: testExportParseEqualityHTML, }, - // { - // testCase: { - // name: "schema/blockProps", - // content: [ - // { - // type: "paragraph", - // content: "Paragraph", - // props: { - // textColor: "red", - // backgroundColor: "blue", - // textAlignment: "center", - // }, - // }, - // { - // type: "heading", - // content: "Heading", - // props: { - // level: 2, - // }, - // }, - // { - // type: "checkListItem", - // content: "Check List Item", - // props: { - // checked: true, - // textColor: "red", - // backgroundColor: "blue", - // textAlignment: "center", - // }, - // }, - // { - // type: "codeBlock", - // content: "Code", - // props: { language: "javascript" }, - // }, - // ], - // }, - // executeTest: testExportParseEqualityHTML, - // }, + { + testCase: { + name: "schema/blockProps", + content: [ + { + type: "paragraph", + content: "Paragraph", + props: { + textColor: "red", + backgroundColor: "blue", + textAlignment: "center", + }, + }, + { + type: "heading", + content: "Heading", + props: { + level: 2, + }, + }, + { + type: "checkListItem", + content: "Check List Item", + props: { + checked: true, + textColor: "red", + backgroundColor: "blue", + textAlignment: "center", + }, + }, + { + type: "codeBlock", + content: "Code", + props: { language: "javascript" }, + }, + ], + }, + executeTest: testExportParseEqualityHTML, + }, { testCase: { name: "schema/inlineContent", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/backgroundColorProp.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/backgroundColorProp.json new file mode 100644 index 0000000000..15f5d0729a --- /dev/null +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/backgroundColorProp.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Blue Background", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "blue", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Blue Background", + "type": "text", + }, + ], + "id": "2", + "props": { + "backgroundColor": "blue", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json index a08910e5ee..4519c2a743 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json @@ -292,9 +292,9 @@ Hard Break", ], "id": "14", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "numberedListItem", }, @@ -311,9 +311,9 @@ Hard Break", ], "id": "15", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "numberedListItem", }, @@ -329,9 +329,9 @@ Hard Break", ], "id": "13", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "bulletListItem", }, @@ -348,9 +348,9 @@ Hard Break", ], "id": "16", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "bulletListItem", }, @@ -366,9 +366,9 @@ Hard Break", ], "id": "12", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "bulletListItem", }, @@ -385,9 +385,9 @@ Hard Break", ], "id": "17", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "bulletListItem", }, @@ -404,9 +404,9 @@ Hard Break", ], "id": "18", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "numberedListItem", }, @@ -423,9 +423,9 @@ Hard Break", ], "id": "19", "props": { - "backgroundColor": "default", + "backgroundColor": "transparent", "textAlignment": "left", - "textColor": "default", + "textColor": "rgb(0, 0, 0)", }, "type": "numberedListItem", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textColorProp.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textColorProp.json new file mode 100644 index 0000000000..4211362bfe --- /dev/null +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textColorProp.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Blue Text", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "blue", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Blue Text", + "type": "text", + }, + ], + "id": "2", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "blue", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts b/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts index d6b69f8906..0c89c74541 100644 --- a/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts +++ b/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts @@ -906,22 +906,22 @@ With Hard Break

            }, executeTest: testParseHTML, }, - // { - // testCase: { - // name: "textColorProp", - // content: `

            Blue Text

            - //

            Blue Text

            `, - // }, - // executeTest: testParseHTML, - // }, - // { - // testCase: { - // name: "backgroundColorProp", - // content: `

            Blue Background

            - //

            Blue Background

            `, - // }, - // executeTest: testParseHTML, - // }, + { + testCase: { + name: "textColorProp", + content: `

            Blue Text

            +

            Blue Text

            `, + }, + executeTest: testParseHTML, + }, + { + testCase: { + name: "backgroundColorProp", + content: `

            Blue Background

            +

            Blue Background

            `, + }, + executeTest: testParseHTML, + }, ]; export const parseTestInstancesMarkdown: TestInstance< diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childBlockWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childBlockWithOffsets.json index 662c5a41f8..9ba5d4a848 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childBlockWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childBlockWithOffsets.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentBlockWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentBlockWithOffsets.json index 6427f60508..3652f165bd 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentBlockWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentBlockWithOffsets.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentsChildBlockWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentsChildBlockWithOffsets.json index 6526c18eea..0bd8674e20 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentsChildBlockWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/childToNextParentsChildBlockWithOffsets.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -41,8 +41,8 @@ "id": "4", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleBlocksWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleBlocksWithOffsets.json index 9b2a53ac12..c3a51550bf 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleBlocksWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleBlocksWithOffsets.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleChildBlocksWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleChildBlocksWithOffsets.json index d6808f220f..aafccbb027 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleChildBlocksWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/multipleChildBlocksWithOffsets.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/parentToChildBlockWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/parentToChildBlockWithOffsets.json index fc480fbd3e..ad4a8c97d3 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/parentToChildBlockWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/parentToChildBlockWithOffsets.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -24,8 +24,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/singleBlockWithOffsets.json b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/singleBlockWithOffsets.json index d40b69edf2..ceeb0482c5 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/singleBlockWithOffsets.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/cutBlocks/singleBlockWithOffsets.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/acrossBlockWithChildren.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/acrossBlockWithChildren.json index 38a2c5b553..e4d21f2ebf 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/acrossBlockWithChildren.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/acrossBlockWithChildren.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -41,8 +41,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -60,8 +60,8 @@ "id": "4", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json index 7650934b21..c937e00159 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json @@ -8,8 +8,8 @@ "id": "1", "type": "image", "props": { - "backgroundColor": "default", "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", "caption": "", @@ -18,4 +18,4 @@ "children": [] } ] -} +} \ No newline at end of file diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childBlock.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childBlock.json index 77b62f2602..18d6e95ef0 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childBlock.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childBlock.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentBlock.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentBlock.json index de6474a245..dd6f6d1650 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentBlock.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentBlock.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentsChildBlock.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentsChildBlock.json index 17aa285579..25372a8a49 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentsChildBlock.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/childToNextParentsChildBlock.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -41,8 +41,8 @@ "id": "4", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleBlocks.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleBlocks.json index 8feb1a3e85..b1b928eccc 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleBlocks.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleBlocks.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleChildBlocks.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleChildBlocks.json index 0d27ebf4c1..0035be5dce 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleChildBlocks.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/multipleChildBlocks.json @@ -8,8 +8,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -25,8 +25,8 @@ "id": "3", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/parentToChildBlock.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/parentToChildBlock.json index d865232a98..c897ea9c1f 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/parentToChildBlock.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/parentToChildBlock.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -24,8 +24,8 @@ "id": "2", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/singleBlock.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/singleBlock.json index 1b1ea02496..a9b38fe625 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/singleBlock.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/singleBlock.json @@ -8,8 +8,8 @@ "id": "1", "type": "paragraph", "props": { - "textColor": "default", "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ diff --git a/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt b/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt index 3c8c8a9c1f..7c6c2f9b52 100644 --- a/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt +++ b/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt @@ -2,275 +2,275 @@ {"_meta":{"startPos":0,"endPos":0},"blocks":[]} {"_meta":{"startPos":0,"endPos":0},"blocks":[]} {"_meta":{"startPos":0,"endPos":0},"blocks":[]} -{"_meta":{"startPos":0,"endPos":4},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":5},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":6},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":7},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":8},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":9},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":10},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":11},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":17},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":18},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":19},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":20},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":21},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":22},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":23},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":24},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":25},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":26},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":27},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":28},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":29},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":30},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":31},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":32},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":33},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":39},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":40},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":41},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":42},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":43},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":44},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":45},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":46},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":47},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":48},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":49},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":50},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":51},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":52},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":53},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":54},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":55},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":61},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":62},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":63},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":64},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":65},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":66},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":67},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":68},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":69},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":70},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":71},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":72},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":73},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":74},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":75},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":76},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":77},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":85},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":86},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":87},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":88},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":89},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":90},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":91},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":92},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":98},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":99},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":100},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":101},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":102},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":103},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":104},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":105},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":106},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":107},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":108},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":109},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":110},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":111},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":112},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":113},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":114},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":120},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":121},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":122},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":123},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":124},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":125},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":126},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":127},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":128},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":129},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":130},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":131},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":132},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":133},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":134},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":135},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":136},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":142},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":143},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":144},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":145},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":146},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":147},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":148},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":149},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":150},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":151},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":152},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":153},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":154},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":155},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":156},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":157},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":158},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":166},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":167},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":168},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":169},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":170},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":171},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":172},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":173},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":174},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":175},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":176},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":177},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":178},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":179},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":180},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":181},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":190},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":191},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":192},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":193},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":194},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":195},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":196},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":197},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":198},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":199},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":200},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":201},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":202},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":203},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":204},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":217},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":218},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":219},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":220},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":221},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":222},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":223},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":224},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":225},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":231},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":232},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":233},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":234},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":235},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":236},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":237},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":238},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":239},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":247},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":248},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":249},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":250},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":251},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":252},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":253},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":254},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":255},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":261},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":262},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":263},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":264},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":265},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":266},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":267},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":268},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":269},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":4},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":5},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":6},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":7},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":8},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":9},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":10},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":11},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":17},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":18},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":19},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":20},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":21},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":22},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":23},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":24},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":25},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":26},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":27},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":28},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":29},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":30},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":31},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":32},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":33},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":39},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":40},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":41},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":42},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":43},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":44},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":45},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":46},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":47},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":48},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":49},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":50},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":51},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":52},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":53},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":54},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":55},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":61},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":62},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":63},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":64},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":65},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":66},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":67},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":68},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":69},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":70},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":71},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":72},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":73},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":74},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":75},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":76},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":77},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":85},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":86},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":87},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":88},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":89},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":90},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":91},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":92},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":98},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":99},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":100},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":101},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":102},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":103},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":104},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":105},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":106},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":107},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":108},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":109},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":110},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":111},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":112},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":113},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":114},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":120},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":121},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":122},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":123},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":124},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":125},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":126},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":127},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":128},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":129},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":130},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":131},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":132},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":133},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":134},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":135},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":136},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":142},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":143},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":144},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":145},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":146},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":147},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":148},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":149},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":150},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":151},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":152},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":153},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":154},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":155},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":156},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":157},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":158},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":166},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":167},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":168},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":169},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":170},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":171},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":172},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":173},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":174},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":175},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":176},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":177},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":178},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":179},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":180},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":181},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":190},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":191},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":192},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":193},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":194},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":195},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":196},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":197},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":198},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":199},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":200},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":201},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":202},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":203},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":204},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":217},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":218},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":219},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":220},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":221},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":222},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":223},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":224},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":225},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":231},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":232},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":233},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":234},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":235},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":236},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":237},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":238},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":239},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":247},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":248},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":249},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":250},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":251},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":252},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":253},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":254},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":255},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":261},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":262},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":263},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":264},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":265},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":266},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":267},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":268},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":269},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} diff --git a/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt b/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt index f9463647d5..35dbdb1d78 100644 --- a/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt +++ b/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt @@ -1,208 +1,208 @@ -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":4,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":5,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":6,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":7,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":8,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":9,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":10,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":11,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":17,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":18,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":19,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":20,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":21,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":22,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":23,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":24,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":25,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":26,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":27,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":28,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":29,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":30,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":31,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":32,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":33,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":39,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":40,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":41,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":42,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":43,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":44,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":45,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":46,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":47,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":48,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":49,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":50,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":51,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":52,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":53,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":54,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":55,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":61,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":62,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":63,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":64,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":65,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":66,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":67,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":68,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":69,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":70,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":71,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":72,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":73,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":74,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":75,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":76,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":77,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":85,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":86,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":87,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":88,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":89,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":90,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":91,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":92,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":98,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":99,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":100,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":101,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":102,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":103,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":104,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":105,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":106,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":107,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":108,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":109,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":110,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":111,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":112,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":113,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":114,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":120,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":121,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":122,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":123,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":124,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":125,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":126,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":127,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":128,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":129,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":130,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":131,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":132,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":133,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":134,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":135,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":136,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":142,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":143,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":144,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":145,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":146,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":147,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":148,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":149,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":150,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":151,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":152,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":153,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":154,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":155,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":156,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":157,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":158,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":166,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":167,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":168,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":169,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":170,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":171,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":172,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":173,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":174,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":175,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":176,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":177,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":178,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":179,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":180,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":181,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":190,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":191,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":192,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":193,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":194,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":195,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":196,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":197,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":198,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":199,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":200,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":201,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":202,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":203,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} -{"_meta":{"startPos":204,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":4,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":5,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":6,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":7,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":8,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":9,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":10,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":11,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":17,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":18,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":19,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":20,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":21,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":22,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":23,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":24,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":25,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":26,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":27,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":28,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":29,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":30,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":31,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":32,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":33,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":39,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":40,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":41,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":42,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":43,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":44,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":45,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":46,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":47,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":48,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":49,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":50,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":51,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":52,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":53,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":54,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":55,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":61,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":62,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":63,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":64,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":65,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":66,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":67,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":68,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":69,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":70,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":71,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":72,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":73,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":74,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":75,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":76,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":77,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":85,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":86,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":87,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":88,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":89,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":90,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":91,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":92,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":98,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":99,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":100,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":101,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":102,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":103,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":104,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":105,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":106,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":107,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":108,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":109,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":110,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":111,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":112,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":113,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":114,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":120,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":121,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":122,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":123,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":124,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":125,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":126,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":127,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":128,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":129,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":130,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":131,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":132,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":133,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":134,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":135,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":136,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":142,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":143,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":144,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":145,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":146,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":147,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":148,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":149,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":150,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":151,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":152,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":153,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":154,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":155,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":156,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":157,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":158,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":166,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":167,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":168,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":169,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":170,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":171,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":172,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":173,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":174,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":175,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":176,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":177,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":178,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":179,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":180,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":181,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":190,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":191,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":192,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":193,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":194,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":195,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":196,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":197,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":198,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":199,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":200,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":201,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":202,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":203,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} +{"_meta":{"startPos":204,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"11"} {"_meta":{"startPos":211,"endPos":276},"blocks":[{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":211,"endPos":276},"blocks":[{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":211,"endPos":276},"blocks":[{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} diff --git a/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph/styled.html b/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph/styled.html index eac21153e9..654ebfd316 100644 --- a/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph/styled.html +++ b/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph/styled.html @@ -1,22 +1,12 @@
            -
            -
            +
            +
            diff --git a/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/simpleCustomParagraph/styled.html b/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/simpleCustomParagraph/styled.html index 1e27d73e98..6a0a83a4cb 100644 --- a/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/simpleCustomParagraph/styled.html +++ b/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/simpleCustomParagraph/styled.html @@ -1,22 +1,12 @@
            -
            -
            +
            +
            diff --git a/tests/src/unit/react/formatConversion/export/__snapshots__/html/customParagraph/styled.html b/tests/src/unit/react/formatConversion/export/__snapshots__/html/customParagraph/styled.html index 77e2409a54..7e7e60707d 100644 --- a/tests/src/unit/react/formatConversion/export/__snapshots__/html/customParagraph/styled.html +++ b/tests/src/unit/react/formatConversion/export/__snapshots__/html/customParagraph/styled.html @@ -1,6 +1,6 @@

            Hello World

            \ No newline at end of file diff --git a/tests/src/unit/react/formatConversion/export/__snapshots__/html/simpleCustomParagraph/styled.html b/tests/src/unit/react/formatConversion/export/__snapshots__/html/simpleCustomParagraph/styled.html index 6d94787359..c2a35ebaee 100644 --- a/tests/src/unit/react/formatConversion/export/__snapshots__/html/simpleCustomParagraph/styled.html +++ b/tests/src/unit/react/formatConversion/export/__snapshots__/html/simpleCustomParagraph/styled.html @@ -1,8 +1,8 @@

            Plain Red Text From 5a2242840b2977f9d180132c366c6a7d2e2b8c56 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 11 Sep 2025 13:35:26 +0200 Subject: [PATCH 4/7] Rename --- packages/core/src/editor/BlockNoteExtensions.ts | 2 +- .../{SchemaMigrationExtension.ts => SchemaMigrationPlugin.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/core/src/extensions/Collaboration/schemaMigration/{SchemaMigrationExtension.ts => SchemaMigrationPlugin.ts} (100%) diff --git a/packages/core/src/editor/BlockNoteExtensions.ts b/packages/core/src/editor/BlockNoteExtensions.ts index ca933666d5..38420e9b63 100644 --- a/packages/core/src/editor/BlockNoteExtensions.ts +++ b/packages/core/src/editor/BlockNoteExtensions.ts @@ -16,7 +16,7 @@ import { CursorPlugin } from "../extensions/Collaboration/CursorPlugin.js"; import { ForkYDocPlugin } from "../extensions/Collaboration/ForkYDocPlugin.js"; import { SyncPlugin } from "../extensions/Collaboration/SyncPlugin.js"; import { UndoPlugin } from "../extensions/Collaboration/UndoPlugin.js"; -import { SchemaMigrationPlugin } from "../extensions/Collaboration/schemaMigration/SchemaMigrationExtension.js"; +import { SchemaMigrationPlugin } from "../extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.js"; import { CommentMark } from "../extensions/Comments/CommentMark.js"; import { CommentsPlugin } from "../extensions/Comments/CommentsPlugin.js"; import { FilePanelProsemirrorPlugin } from "../extensions/FilePanel/FilePanelPlugin.js"; diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationExtension.ts b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts similarity index 100% rename from packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationExtension.ts rename to packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts From c75c8600a55e7ce2f613234151330f0aee6f9cd2 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 11 Sep 2025 15:01:08 +0200 Subject: [PATCH 5/7] Updated test snapshots --- packages/core/src/editor/Block.css | 54 ++-- .../__snapshots__/fork-yjs-snap-forked.html | 2 +- .../__snapshots__/fork-yjs-snap.html | 2 +- .../ServerBlockNoteEditor.test.ts.snap | 10 +- .../__snapshots__/agent.test.ts.snap | 288 +++++++++--------- .../__snapshots__/changeset.test.ts.snap | 40 ++- .../__snapshots__/rebaseTool.test.ts.snap | 12 +- .../__snapshots__/nodeConversion.test.ts.snap | 16 +- .../headings-json-chromium-linux.json | 48 +-- .../images-json-chromium-linux.json | 28 +- ...estedOrderedLists-json-chromium-linux.json | 48 +-- .../nestedParagraphs-json-chromium-linux.json | 48 +-- ...tedUnorderedLists-json-chromium-linux.json | 48 +-- .../orderedLists-json-chromium-linux.json | 48 +-- .../paragraphs-json-chromium-linux.json | 48 +-- .../unorderedLists-json-chromium-linux.json | 48 +-- .../reactInteractivity-chromium-linux.json | 21 +- .../reactInteractivity-firefox-linux.json | 21 +- .../reactInteractivity-webkit-linux.json | 21 +- .../vanillaInteractivity-chromium-linux.json | 21 +- .../vanillaInteractivity-firefox-linux.json | 21 +- .../vanillaInteractivity-webkit-linux.json | 21 +- .../dragdropnested-chromium-linux.json | 36 +-- .../dragdropnested-webkit-linux.json | 36 +-- .../dragdropsingle-chromium-linux.json | 24 +- .../dragdropsingle-webkit-linux.json | 24 +- ...dnonselectedemptyblock-chromium-linux.json | 18 +- ...ddnonselectedemptyblock-firefox-linux.json | 18 +- ...addnonselectedemptyblock-webkit-linux.json | 18 +- ...dragHandleDocStructure-chromium-linux.json | 18 +- .../dragHandleDocStructure-firefox-linux.json | 18 +- .../dragHandleDocStructure-webkit-linux.json | 18 +- .../draghandleadd-chromium-linux.json | 18 +- .../draghandleadd-firefox-linux.json | 18 +- .../draghandleadd-webkit-linux.json | 18 +- .../draghandledelete-chromium-linux.json | 6 +- .../draghandledelete-firefox-linux.json | 6 +- .../draghandledelete-webkit-linux.json | 6 +- ...draghandlenesteddelete-chromium-linux.json | 12 +- .../draghandlenesteddelete-firefox-linux.json | 12 +- .../draghandlenesteddelete-webkit-linux.json | 12 +- .../createImage-chromium-linux.json | 11 +- .../createImage-firefox-linux.json | 11 +- .../createImage-webkit-linux.json | 11 +- .../deleteImage-chromium-linux.json | 6 +- .../deleteImage-firefox-linux.json | 6 +- .../deleteImage-webkit-linux.json | 6 +- .../dragImage-chromium-linux.json | 17 +- .../dragImage-firefox-linux.json | 17 +- .../dragImage-webkit-linux.json | 17 +- .../embedImage-chromium-linux.json | 11 +- .../embedImage-firefox-linux.json | 11 +- .../embedImage-webkit-linux.json | 11 +- .../resizeImage-chromium-linux.json | 11 +- .../resizeImage-firefox-linux.json | 11 +- .../resizeImage-webkit-linux.json | 11 +- ...seIndentMultipleBlocks-chromium-linux.json | 30 +- ...aseIndentMultipleBlocks-firefox-linux.json | 30 +- ...easeIndentMultipleBlocks-webkit-linux.json | 30 +- ...reaseIndentSingleBlock-chromium-linux.json | 30 +- ...creaseIndentSingleBlock-firefox-linux.json | 30 +- ...ecreaseIndentSingleBlock-webkit-linux.json | 30 +- ...seIndentMultipleBlocks-chromium-linux.json | 30 +- ...aseIndentMultipleBlocks-firefox-linux.json | 30 +- ...easeIndentMultipleBlocks-webkit-linux.json | 30 +- ...reaseIndentSingleBlock-chromium-linux.json | 30 +- ...creaseIndentSingleBlock-firefox-linux.json | 30 +- ...ncreaseIndentSingleBlock-webkit-linux.json | 30 +- ...acePreservesMarks-json-chromium-linux.json | 12 +- ...pacePreservesMarks-json-firefox-linux.json | 12 +- ...spacePreservesMarks-json-webkit-linux.json | 12 +- ...ervesNestedBlocks-json-chromium-linux.json | 24 +- ...servesNestedBlocks-json-firefox-linux.json | 24 +- ...eservesNestedBlocks-json-webkit-linux.json | 24 +- ...spaceStartOfBlock-json-chromium-linux.json | 12 +- ...kspaceStartOfBlock-json-firefox-linux.json | 12 +- ...ckspaceStartOfBlock-json-webkit-linux.json | 12 +- ...tListItemShortcut-json-chromium-linux.json | 12 +- ...etListItemShortcut-json-firefox-linux.json | 12 +- ...letListItemShortcut-json-webkit-linux.json | 12 +- ...dListItemShortcut-json-chromium-linux.json | 12 +- ...edListItemShortcut-json-firefox-linux.json | 12 +- ...kedListItemShortcut-json-webkit-linux.json | 12 +- ...terPreservesMarks-json-chromium-linux.json | 18 +- ...nterPreservesMarks-json-firefox-linux.json | 18 +- ...enterPreservesMarks-json-webkit-linux.json | 18 +- ...ervesNestedBlocks-json-chromium-linux.json | 30 +- ...servesNestedBlocks-json-firefox-linux.json | 30 +- ...eservesNestedBlocks-json-webkit-linux.json | 30 +- ...SelectionNotEmpty-json-chromium-linux.json | 18 +- ...rSelectionNotEmpty-json-firefox-linux.json | 18 +- ...erSelectionNotEmpty-json-webkit-linux.json | 18 +- .../heading1Shortcut-json-chromium-linux.json | 12 +- .../heading1Shortcut-json-firefox-linux.json | 12 +- .../heading1Shortcut-json-webkit-linux.json | 12 +- .../heading2Shortcut-json-chromium-linux.json | 12 +- .../heading2Shortcut-json-firefox-linux.json | 12 +- .../heading2Shortcut-json-webkit-linux.json | 12 +- .../heading3Shortcut-json-chromium-linux.json | 12 +- .../heading3Shortcut-json-firefox-linux.json | 12 +- .../heading3Shortcut-json-webkit-linux.json | 12 +- ...dListItemShortcut-json-chromium-linux.json | 12 +- ...edListItemShortcut-json-firefox-linux.json | 12 +- ...redListItemShortcut-json-webkit-linux.json | 12 +- .../docStructureSnapshot-chromium-linux.json | 48 +-- .../docStructureSnapshot-firefox-linux.json | 48 +-- .../docStructureSnapshot-webkit-linux.json | 48 +-- .../arrowKeyCells-json-chromium-linux.json | 13 +- .../arrowKeyCells-json-firefox-linux.json | 13 +- .../arrowKeyCells-json-webkit-linux.json | 13 +- .../cellTyping-json-chromium-linux.json | 13 +- .../cellTyping-json-firefox-linux.json | 13 +- .../cellTyping-json-webkit-linux.json | 13 +- .../tabCells-json-chromium-linux.json | 13 +- .../tabCells-json-firefox-linux.json | 13 +- .../tabCells-json-webkit-linux.json | 13 +- .../text/html/basicBlocksWithProps.html | 6 +- 117 files changed, 1315 insertions(+), 1288 deletions(-) diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index 88a7c6d57c..6ed5361621 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -559,76 +559,94 @@ NESTED BLOCKS /* TODO: should this be here? */ /* TEXT COLORS */ -[data-text-color="gray"] { +[data-text-color="gray"], +.bn-block:has(> .bn-block-content[data-text-color="gray"]) { color: #9b9a97; } -[data-text-color="brown"] { +[data-text-color="brown"], +.bn-block:has(> .bn-block-content[data-text-color="brown"]) { color: #64473a; } -[data-text-color="red"] { +[data-text-color="red"], +.bn-block:has(> .bn-block-content[data-text-color="red"]) { color: #e03e3e; } -[data-text-color="orange"] { +[data-text-color="orange"], +.bn-block:has(> .bn-block-content[data-text-color="orange"]) { color: #d9730d; } -[data-text-color="yellow"] { +[data-text-color="yellow"], +.bn-block:has(> .bn-block-content[data-text-color="yellow"]) { color: #dfab01; } -[data-text-color="green"] { +[data-text-color="green"], +.bn-block:has(> .bn-block-content[data-text-color="green"]) { color: #4d6461; } -[data-text-color="blue"] { +[data-text-color="blue"], +.bn-block:has(> .bn-block-content[data-text-color="blue"]) { color: #0b6e99; } -[data-text-color="purple"] { +[data-text-color="purple"], +.bn-block:has(> .bn-block-content[data-text-color="purple"]) { color: #6940a5; } -[data-text-color="pink"] { +[data-text-color="pink"], +.bn-block:has(> .bn-block-content[data-text-color="pink"]) { color: #ad1a72; } /* BACKGROUND COLORS */ -[data-background-color="gray"] { +[data-background-color="gray"], +.bn-block:has(> .bn-block-content[data-background-color="gray"]) { background-color: #ebeced; } -[data-background-color="brown"] { +[data-background-color="brown"], +.bn-block:has(> .bn-block-content[data-background-color="brown"]) { background-color: #e9e5e3; } -[data-background-color="red"] { +[data-background-color="red"], +.bn-block:has(> .bn-block-content[data-background-color="red"]) { background-color: #fbe4e4; } -[data-background-color="orange"] { +[data-background-color="orange"], +.bn-block:has(> .bn-block-content[data-background-color="orange"]) { background-color: #f6e9d9; } -[data-background-color="yellow"] { +[data-background-color="yellow"], +.bn-block:has(> .bn-block-content[data-background-color="yellow"]) { background-color: #fbf3db; } -[data-background-color="green"] { +[data-background-color="green"], +.bn-block:has(> .bn-block-content[data-background-color="green"]) { background-color: #ddedea; } -[data-background-color="blue"] { +[data-background-color="blue"], +.bn-block:has(> .bn-block-content[data-background-color="blue"]) { background-color: #ddebf1; } -[data-background-color="purple"] { +[data-background-color="purple"], +.bn-block:has(> .bn-block-content[data-background-color="purple"]) { background-color: #eae4f2; } -[data-background-color="pink"] { +[data-background-color="pink"], +.bn-block:has(> .bn-block-content[data-background-color="pink"]) { background-color: #f4dfeb; } diff --git a/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap-forked.html b/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap-forked.html index 5bb08d421c..8957bbb259 100644 --- a/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap-forked.html +++ b/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap-forked.html @@ -1 +1 @@ -Hello World \ No newline at end of file +Hello World \ No newline at end of file diff --git a/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap.html b/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap.html index 0ba9558819..063ddebeac 100644 --- a/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap.html +++ b/packages/core/src/extensions/Collaboration/__snapshots__/fork-yjs-snap.html @@ -1 +1 @@ -Hello \ No newline at end of file +Hello \ No newline at end of file diff --git a/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap b/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap index 63e22f0b0b..3179609ca8 100644 --- a/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap +++ b/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap @@ -1,8 +1,8 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`Test ServerBlockNoteEditor > converts to HTML (blocksToFullHTML) 1`] = `"

            Heading 2

            Paragraph

            list item

            Example

            Caption

            Example

            Caption

            "`; +exports[`Test ServerBlockNoteEditor > converts to HTML (blocksToFullHTML) 1`] = `"

            Heading 2

            Paragraph

            list item

            Example

            Caption

            Example

            Caption

            "`; -exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLossy) 1`] = `"

            Heading 2

            Paragraph

            • list item

            Example
            Caption
            Example

            Caption

            "`; +exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLossy) 1`] = `"

            Heading 2

            Paragraph

            • list item

            Example
            Caption
            Example

            Caption

            "`; exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLossy) 2`] = ` [ @@ -28,11 +28,11 @@ exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLos ], "id": "0", "props": { - "backgroundColor": "default", + "backgroundColor": "blue", "isToggleable": false, "level": 2, "textAlignment": "right", - "textColor": "default", + "textColor": "yellow", }, "type": "heading", }, @@ -47,7 +47,7 @@ exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLos ], "id": "1", "props": { - "backgroundColor": "default", + "backgroundColor": "red", "textAlignment": "left", "textColor": "default", }, diff --git a/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap b/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap index fb75dd04d9..46fb96a036 100644 --- a/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap +++ b/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap @@ -2,243 +2,243 @@ exports[`agentStepToTr > Update > clear block formatting 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Colored text"}]}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"backgroundColor","previousValue":"red","newValue":"default"}}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","text":"Aligned text"}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Colored text"}]}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"backgroundColor","previousValue":"red","newValue":"default"}}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Aligned text"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"right","newValue":"left"}}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Colored text"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"backgroundColor","previousValue":"red","newValue":"default"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","text":"Aligned text"}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Colored text"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"backgroundColor","previousValue":"red","newValue":"default"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Aligned text"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"right","newValue":"left"}}]}]}]}]}", ] `; exports[`agentStepToTr > Update > drop mark and link 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}},{"type":"deletion","attrs":{"id":null}}],"text":"Link."},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}},{"type":"deletion","attrs":{"id":null}}],"text":"Link."},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > drop mark and link and change text within mark 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"H"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold "},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold t"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold th"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}},{"type":"deletion","attrs":{"id":null}}],"text":"Link."},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"H"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold "},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold t"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold th"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Hi"},{"type":"text","text":", world! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"Bold"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Bold the"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":" text. "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}},{"type":"deletion","attrs":{"id":null}}],"text":"Link."},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > modify nested content 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"A"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"AP"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APP"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APPL"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APPLE"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APPLES"}]}]}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"A"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"AP"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APP"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APPL"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APPLE"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Apples"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"APPLES"}]}]}]}]}]}]}", ] `; exports[`agentStepToTr > Update > modify parent content 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"N"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NE"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEE"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED "},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED T"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO "},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO B"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO BU"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO BUY"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"N"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NE"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEE"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED "},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED T"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO "},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO B"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO BU"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"need to buy"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"NEED TO BUY"},{"type":"text","text":":"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}]}]}]}]}]}]}", ] `; exports[`agentStepToTr > Update > plain source block, add mention 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"mention","attrs":{"user":"Jane Doe"},"marks":[{"type":"insertion","attrs":{"id":null}}]},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"mention","attrs":{"user":"Jane Doe"},"marks":[{"type":"insertion","attrs":{"id":null}}]},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > standard update 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"We"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wel"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Welt"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"We"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wel"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Welt"},{"type":"text","text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in source block, remove mark 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in source block, remove mention 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":", "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":", "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in source block, replace content 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"u"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"up"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"upd"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"upda"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updat"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"update"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated "}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated c"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated co"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated con"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated cont"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated conte"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated conten"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated content"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"u"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"up"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"upd"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"upda"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updat"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"update"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated "}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated c"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated co"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated con"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated cont"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated conte"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated conten"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"updated content"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in source block, update mention prop 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"mention","attrs":{"user":"Jane Doe"},"marks":[{"type":"insertion","attrs":{"id":null}}]},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"},"marks":[{"type":"deletion","attrs":{"id":null}}]},{"type":"mention","attrs":{"user":"Jane Doe"},"marks":[{"type":"insertion","attrs":{"id":null}}]},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in source block, update text 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"W"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wi"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie g"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie ge"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geh"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht e"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es d"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es di"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"D"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Di"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Die"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dies"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Diese"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser T"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Te"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Tex"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"i"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist b"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist bl"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist bla"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist blau"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"W"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wi"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie g"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie ge"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geh"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht e"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es d"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es di"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"D"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Di"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Die"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dies"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Diese"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser T"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Te"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Tex"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"i"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist b"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist bl"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist bla"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"bold"}],"text":"How are you doing?"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Wie geht es dir?"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":" "},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"Dieser Text"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":" "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"is blue"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"ist blau"},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in target block, add mark (paragraph) 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello, world!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello, world!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > styles + ic in target block, add mark (word) 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"world!"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}},{"type":"bold"}],"text":"world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > translate selection 1`] = ` [ - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world!"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"H"},{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"e"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"a"},{"type":"text","text":"llo, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > turn paragraphs into list 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"bulletListItem","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"bulletListItem"}}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Bananas"}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"bulletListItem","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Apples"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"bulletListItem"}}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"bulletListItem","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Bananas"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"bulletListItem"}}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"bulletListItem","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"bulletListItem"}}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Bananas"}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"I need to buy:"}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"bulletListItem","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Apples"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"bulletListItem"}}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"bulletListItem","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Bananas"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"bulletListItem"}}]}]}]}]}", ] `; exports[`agentStepToTr > Update > update block prop 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > update block prop and content 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wh"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wha"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What'"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's "},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's u"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's up"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wh"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wha"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What'"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's "},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's u"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"right"},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's up"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"textAlignment","previousValue":"left","newValue":"right"}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > update block type 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > update block type and content 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wh"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wha"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What'"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's "},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's u"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's up"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wh"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wha"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What'"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's "},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's u"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1"},"content":[{"type":"heading","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left","level":1,"isToggleable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's up"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isToggleable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3"},"content":[{"type":"paragraph","attrs":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; @@ -529,7 +529,9 @@ exports[`getStepsAsAgent > node attr change 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "right", + "textColor": "default", }, "marks": [ { @@ -571,9 +573,11 @@ exports[`getStepsAsAgent > node type change 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "isToggleable": false, "level": 1, "textAlignment": "left", + "textColor": "default", }, "marks": [ { diff --git a/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap b/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap index ccf99a94a8..c78d191d45 100644 --- a/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap +++ b/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap @@ -8,32 +8,32 @@ exports[`clear block formatting 1`] = ` { "attrs": { "backgroundColor": "red", - "id": "ref1", + "textAlignment": "left", "textColor": "default", }, - "type": "blockContainer", + "type": "paragraph", }, ], "openEnd": 1, }, "step": { - "from": 1, + "from": 2, "slice": { "content": [ { "attrs": { "backgroundColor": "default", - "id": "ref1", + "textAlignment": "left", "textColor": "default", }, - "type": "blockContainer", + "type": "paragraph", }, ], "openEnd": 1, }, "stepType": "replace", "structure": true, - "to": 2, + "to": 3, }, }, ] @@ -46,7 +46,9 @@ exports[`clear block formatting 2`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "right", + "textColor": "default", }, "type": "paragraph", }, @@ -59,7 +61,9 @@ exports[`clear block formatting 2`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -795,7 +799,9 @@ exports[`turn paragraphs into list 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -808,7 +814,9 @@ exports[`turn paragraphs into list 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "bulletListItem", }, @@ -830,7 +838,9 @@ exports[`turn paragraphs into list 2`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -843,7 +853,9 @@ exports[`turn paragraphs into list 2`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "bulletListItem", }, @@ -865,7 +877,9 @@ exports[`update block prop 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -878,7 +892,9 @@ exports[`update block prop 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "right", + "textColor": "default", }, "type": "paragraph", }, @@ -900,7 +916,9 @@ exports[`update block prop and content 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -913,7 +931,9 @@ exports[`update block prop and content 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "right", + "textColor": "default", }, "type": "paragraph", }, @@ -958,7 +978,9 @@ exports[`update block type 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -971,9 +993,11 @@ exports[`update block type 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "isToggleable": false, "level": 1, "textAlignment": "left", + "textColor": "default", }, "type": "heading", }, @@ -995,7 +1019,9 @@ exports[`update block type and content 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -1008,9 +1034,11 @@ exports[`update block type and content 1`] = ` "content": [ { "attrs": { + "backgroundColor": "default", "isToggleable": false, "level": 1, "textAlignment": "left", + "textColor": "default", }, "type": "heading", }, diff --git a/packages/xl-ai/src/prosemirror/__snapshots__/rebaseTool.test.ts.snap b/packages/xl-ai/src/prosemirror/__snapshots__/rebaseTool.test.ts.snap index fd58fef1ce..e00571d059 100644 --- a/packages/xl-ai/src/prosemirror/__snapshots__/rebaseTool.test.ts.snap +++ b/packages/xl-ai/src/prosemirror/__snapshots__/rebaseTool.test.ts.snap @@ -7,14 +7,14 @@ exports[`should be able to apply changes to a clean doc (use invertMap) 1`] = ` "content": [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -54,14 +54,14 @@ exports[`should be able to apply changes to a clean doc (use rebaseTr) 1`] = ` "content": [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -101,14 +101,14 @@ exports[`should create some example suggestions 1`] = ` "content": [ { "attrs": { - "backgroundColor": "default", "id": "1", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/packages/xl-multi-column/src/test/conversions/__snapshots__/nodeConversion.test.ts.snap b/packages/xl-multi-column/src/test/conversions/__snapshots__/nodeConversion.test.ts.snap index b73d6a8253..c110a75c51 100644 --- a/packages/xl-multi-column/src/test/conversions/__snapshots__/nodeConversion.test.ts.snap +++ b/packages/xl-multi-column/src/test/conversions/__snapshots__/nodeConversion.test.ts.snap @@ -14,14 +14,14 @@ exports[`Test BlockNote-Prosemirror conversion > Case: multi-column-schema > Con "content": [ { "attrs": { - "backgroundColor": "default", "id": "3", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -36,14 +36,14 @@ exports[`Test BlockNote-Prosemirror conversion > Case: multi-column-schema > Con }, { "attrs": { - "backgroundColor": "default", "id": "4", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -67,14 +67,14 @@ exports[`Test BlockNote-Prosemirror conversion > Case: multi-column-schema > Con "content": [ { "attrs": { - "backgroundColor": "default", "id": "6", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { @@ -89,14 +89,14 @@ exports[`Test BlockNote-Prosemirror conversion > Case: multi-column-schema > Con }, { "attrs": { - "backgroundColor": "default", "id": "7", - "textColor": "default", }, "content": [ { "attrs": { + "backgroundColor": "default", "textAlignment": "left", + "textColor": "default", }, "content": [ { diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json index f86c742976..4aaa985271 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -79,14 +79,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -95,14 +95,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -119,14 +119,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -143,14 +143,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -167,14 +167,14 @@ { "type": "blockContainer", "attrs": { - "id": "8", - "textColor": "default", - "backgroundColor": "default" + "id": "8" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/images-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/images-json-chromium-linux.json index 09d895c644..b5342b861d 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/images-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/images-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,15 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -50,14 +49,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -66,15 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -87,14 +85,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedOrderedLists-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedOrderedLists-json-chromium-linux.json index 006b30c605..362facf19d 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedOrderedLists-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedOrderedLists-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -53,14 +53,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -99,14 +99,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -122,14 +122,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -145,14 +145,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -175,14 +175,14 @@ { "type": "blockContainer", "attrs": { - "id": "8", - "textColor": "default", - "backgroundColor": "default" + "id": "8" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedParagraphs-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedParagraphs-json-chromium-linux.json index bafca45f61..8422e5526d 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedParagraphs-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedParagraphs-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -53,14 +53,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -99,14 +99,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -122,14 +122,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -145,14 +145,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -175,14 +175,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedUnorderedLists-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedUnorderedLists-json-chromium-linux.json index 60c1d3e2cc..99e4587217 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedUnorderedLists-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/nestedUnorderedLists-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -53,14 +53,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -99,14 +99,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -122,14 +122,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -145,14 +145,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -175,14 +175,14 @@ { "type": "blockContainer", "attrs": { - "id": "8", - "textColor": "default", - "backgroundColor": "default" + "id": "8" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/orderedLists-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/orderedLists-json-chromium-linux.json index 76a7bc275b..1b86bcac7e 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/orderedLists-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/orderedLists-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -51,14 +51,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -73,14 +73,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -89,14 +89,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -133,14 +133,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -155,14 +155,14 @@ { "type": "blockContainer", "attrs": { - "id": "8", - "textColor": "default", - "backgroundColor": "default" + "id": "8" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/paragraphs-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/paragraphs-json-chromium-linux.json index 5b10e415c5..506dcf22e6 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/paragraphs-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/paragraphs-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -51,14 +51,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -73,14 +73,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -89,14 +89,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -133,14 +133,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -155,14 +155,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/unorderedLists-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/unorderedLists-json-chromium-linux.json index 0994064b07..58637abb87 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/unorderedLists-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/unorderedLists-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -51,14 +51,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -73,14 +73,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } @@ -89,14 +89,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -133,14 +133,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -155,14 +155,14 @@ { "type": "blockContainer", "attrs": { - "id": "8", - "textColor": "default", - "backgroundColor": "default" + "id": "8" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-chromium-linux.json b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-chromium-linux.json index 84336c59a1..2579af3a5f 100644 --- a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-chromium-linux.json +++ b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-chromium-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "alert", "attrs": { "textAlignment": "left", + "textColor": "default", "type": "info" }, "content": [ @@ -30,9 +29,7 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { @@ -46,14 +43,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bracketsParagraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -68,14 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-firefox-linux.json b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-firefox-linux.json index 84336c59a1..2579af3a5f 100644 --- a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-firefox-linux.json +++ b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-firefox-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "alert", "attrs": { "textAlignment": "left", + "textColor": "default", "type": "info" }, "content": [ @@ -30,9 +29,7 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { @@ -46,14 +43,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bracketsParagraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -68,14 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-webkit-linux.json b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-webkit-linux.json index 84336c59a1..2579af3a5f 100644 --- a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-webkit-linux.json +++ b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/reactInteractivity-webkit-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "alert", "attrs": { "textAlignment": "left", + "textColor": "default", "type": "info" }, "content": [ @@ -30,9 +29,7 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { @@ -46,14 +43,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bracketsParagraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -68,14 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-chromium-linux.json b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-chromium-linux.json index 84336c59a1..2579af3a5f 100644 --- a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-chromium-linux.json +++ b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-chromium-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "alert", "attrs": { "textAlignment": "left", + "textColor": "default", "type": "info" }, "content": [ @@ -30,9 +29,7 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { @@ -46,14 +43,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bracketsParagraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -68,14 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-firefox-linux.json b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-firefox-linux.json index 84336c59a1..2579af3a5f 100644 --- a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-firefox-linux.json +++ b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-firefox-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "alert", "attrs": { "textAlignment": "left", + "textColor": "default", "type": "info" }, "content": [ @@ -30,9 +29,7 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { @@ -46,14 +43,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bracketsParagraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -68,14 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-webkit-linux.json b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-webkit-linux.json index 84336c59a1..2579af3a5f 100644 --- a/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-webkit-linux.json +++ b/tests/src/end-to-end/customblocks/customblocks.test.ts-snapshots/vanillaInteractivity-webkit-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "alert", "attrs": { "textAlignment": "left", + "textColor": "default", "type": "info" }, "content": [ @@ -30,9 +29,7 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { @@ -46,14 +43,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "bracketsParagraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -68,14 +65,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json index a579678397..71d8b512ae 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -54,14 +54,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -77,14 +77,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -109,14 +109,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -133,14 +133,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json index a579678397..71d8b512ae 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -54,14 +54,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -77,14 +77,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -109,14 +109,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -133,14 +133,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json index 7779b90c1e..c9f43dc591 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -79,14 +79,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json index 7779b90c1e..c9f43dc591 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -79,14 +79,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json index 94b8c04c45..65a3f2a913 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": true @@ -49,14 +49,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json index 94b8c04c45..65a3f2a913 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": true @@ -49,14 +49,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json index 94b8c04c45..65a3f2a913 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": true @@ -49,14 +49,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json index 1c9873aff0..3a0db9ce22 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json index 1c9873aff0..3a0db9ce22 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json index 1c9873aff0..3a0db9ce22 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json index 1236e94a8f..41ee7ea3eb 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": true @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json index 1236e94a8f..41ee7ea3eb 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": true @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json index 1236e94a8f..41ee7ea3eb 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": true @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-chromium-linux.json index 147a3706d9..f56b777a4c 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-firefox-linux.json index 147a3706d9..f56b777a4c 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-webkit-linux.json index 147a3706d9..f56b777a4c 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandledelete-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json index 8b3629cca9..ff0c8fd1a1 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json index 8b3629cca9..ff0c8fd1a1 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json index 8b3629cca9..ff0c8fd1a1 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-chromium-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-chromium-linux.json index 34c6aacd1b..b97de427ca 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-chromium-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-chromium-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "", "caption": "", @@ -27,14 +26,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-firefox-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-firefox-linux.json index 34c6aacd1b..b97de427ca 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-firefox-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-firefox-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "", "caption": "", @@ -27,14 +26,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-webkit-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-webkit-linux.json index 34c6aacd1b..b97de427ca 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-webkit-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/createImage-webkit-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "", "caption": "", @@ -27,14 +26,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-chromium-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-chromium-linux.json index 147a3706d9..f56b777a4c 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-chromium-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-firefox-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-firefox-linux.json index 147a3706d9..f56b777a4c 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-firefox-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-webkit-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-webkit-linux.json index 147a3706d9..f56b777a4c 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-webkit-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/deleteImage-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json index 681a86ab67..268c1d446b 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,15 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "", "caption": "", @@ -51,14 +50,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json index 681a86ab67..268c1d446b 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,15 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "", "caption": "", @@ -51,14 +50,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json index 681a86ab67..268c1d446b 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,15 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "", "url": "", "caption": "", @@ -51,14 +50,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-chromium-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-chromium-linux.json index 3307cf11b4..a9441a232a 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-chromium-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-chromium-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -27,14 +26,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-firefox-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-firefox-linux.json index 3307cf11b4..a9441a232a 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-firefox-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-firefox-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -27,14 +26,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-webkit-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-webkit-linux.json index 3307cf11b4..a9441a232a 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-webkit-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/embedImage-webkit-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -27,14 +26,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-chromium-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-chromium-linux.json index 96580f8502..fd73afab13 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-chromium-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-chromium-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -28,14 +27,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-firefox-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-firefox-linux.json index 96580f8502..fd73afab13 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-firefox-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-firefox-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -28,14 +27,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-webkit-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-webkit-linux.json index 96580f8502..fd73afab13 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-webkit-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/resizeImage-webkit-linux.json @@ -7,15 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "image", "attrs": { "textAlignment": "left", + "backgroundColor": "default", "name": "jk-placeholder-image.jpg", "url": "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", "caption": "", @@ -28,14 +27,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json index 48fbd294f8..5e1d3780e0 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -58,14 +58,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -82,14 +82,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -106,14 +106,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json index 48fbd294f8..5e1d3780e0 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -58,14 +58,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -82,14 +82,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -106,14 +106,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json index 48fbd294f8..5e1d3780e0 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -58,14 +58,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -82,14 +82,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -106,14 +106,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json index be7ca80175..f598b9fff0 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -58,14 +58,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json index be7ca80175..f598b9fff0 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -58,14 +58,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json index be7ca80175..f598b9fff0 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -58,14 +58,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json index 537c3c6c91..5553e85dce 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -79,14 +79,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json index 537c3c6c91..5553e85dce 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -79,14 +79,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json index 537c3c6c91..5553e85dce 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -79,14 +79,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json index 22e1eea6f7..ea7e0da01b 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json index 22e1eea6f7..ea7e0da01b 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json index 22e1eea6f7..ea7e0da01b 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -55,14 +55,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -83,14 +83,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -111,14 +111,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-chromium-linux.json index 242f82807d..b126471723 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -42,14 +42,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-firefox-linux.json index 242f82807d..b126471723 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -42,14 +42,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-webkit-linux.json index 242f82807d..b126471723 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesMarks-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -42,14 +42,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-chromium-linux.json index 98f36be4ea..f6496403ef 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -52,14 +52,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -78,14 +78,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-firefox-linux.json index 98f36be4ea..f6496403ef 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -52,14 +52,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -78,14 +78,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-webkit-linux.json index 98f36be4ea..f6496403ef 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspacePreservesNestedBlocks-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -52,14 +52,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -78,14 +78,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-chromium-linux.json index f5a1348948..a394365e86 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-firefox-linux.json index f5a1348948..a394365e86 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-webkit-linux.json index f5a1348948..a394365e86 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/backspaceStartOfBlock-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-chromium-linux.json index babb50d670..916b354901 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-firefox-linux.json index babb50d670..916b354901 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-webkit-linux.json index babb50d670..916b354901 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/bulletListItemShortcut-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-chromium-linux.json index a17b04dcbd..7ffeee22cf 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "checkListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "checked": false }, @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-firefox-linux.json index a17b04dcbd..7ffeee22cf 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "checkListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "checked": false }, @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-webkit-linux.json index a17b04dcbd..7ffeee22cf 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/checkedListItemShortcut-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "checkListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "checked": false }, @@ -30,14 +30,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json index 16d517df1b..2b72424405 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -36,14 +36,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -63,14 +63,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json index 16d517df1b..2b72424405 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -36,14 +36,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -63,14 +63,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json index 16d517df1b..2b72424405 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -36,14 +36,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -63,14 +63,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json index 4faa76afb6..af8131a6c6 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -54,14 +54,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -78,14 +78,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -106,14 +106,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json index 4faa76afb6..af8131a6c6 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -54,14 +54,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -78,14 +78,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -106,14 +106,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json index 4faa76afb6..af8131a6c6 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -54,14 +54,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -78,14 +78,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -106,14 +106,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json index d0c398e19d..eccac9cf1f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -53,14 +53,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json index d0c398e19d..eccac9cf1f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -53,14 +53,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json index d0c398e19d..eccac9cf1f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -53,14 +53,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json index 1f225e41dc..2182b246d3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json index 1f225e41dc..2182b246d3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json index 1f225e41dc..2182b246d3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json index 17f9197953..90ad0c7f65 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json index 17f9197953..90ad0c7f65 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json index 17f9197953..90ad0c7f65 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json index b13268b46b..cda79940df 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json index b13268b46b..cda79940df 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json index b13268b46b..cda79940df 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-chromium-linux.json index ca9c8be20b..c3cbbec3b3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-firefox-linux.json index ca9c8be20b..c3cbbec3b3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-webkit-linux.json index ca9c8be20b..c3cbbec3b3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/numberedListItemShortcut-json-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -29,14 +29,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-chromium-linux.json b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-chromium-linux.json index 114c9b7c78..0ba4ddac8e 100644 --- a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-chromium-linux.json +++ b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-chromium-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -56,14 +56,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -81,14 +81,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -107,14 +107,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -129,14 +129,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -151,14 +151,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -177,14 +177,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json index 114c9b7c78..0ba4ddac8e 100644 --- a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json +++ b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -56,14 +56,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -81,14 +81,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -107,14 +107,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -129,14 +129,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -151,14 +151,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -177,14 +177,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-webkit-linux.json b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-webkit-linux.json index 114c9b7c78..0ba4ddac8e 100644 --- a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-webkit-linux.json +++ b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-webkit-linux.json @@ -7,14 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 1, "isToggleable": false @@ -31,14 +31,14 @@ { "type": "blockContainer", "attrs": { - "id": "2", - "textColor": "default", - "backgroundColor": "default" + "id": "2" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 2, "isToggleable": false @@ -56,14 +56,14 @@ { "type": "blockContainer", "attrs": { - "id": "3", - "textColor": "default", - "backgroundColor": "default" + "id": "3" }, "content": [ { "type": "heading", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left", "level": 3, "isToggleable": false @@ -81,14 +81,14 @@ { "type": "blockContainer", "attrs": { - "id": "4", - "textColor": "default", - "backgroundColor": "default" + "id": "4" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -107,14 +107,14 @@ { "type": "blockContainer", "attrs": { - "id": "5", - "textColor": "default", - "backgroundColor": "default" + "id": "5" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -129,14 +129,14 @@ { "type": "blockContainer", "attrs": { - "id": "6", - "textColor": "default", - "backgroundColor": "default" + "id": "6" }, "content": [ { "type": "numberedListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -151,14 +151,14 @@ { "type": "blockContainer", "attrs": { - "id": "7", - "textColor": "default", - "backgroundColor": "default" + "id": "7" }, "content": [ { "type": "bulletListItem", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" }, "content": [ @@ -177,14 +177,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-chromium-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-chromium-linux.json index 262b827f38..7b53b413be 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-chromium-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-chromium-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -140,14 +141,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-firefox-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-firefox-linux.json index 262b827f38..7b53b413be 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-firefox-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-firefox-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -140,14 +141,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-webkit-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-webkit-linux.json index 262b827f38..7b53b413be 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-webkit-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/arrowKeyCells-json-webkit-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -140,14 +141,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-chromium-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-chromium-linux.json index fbd2cfd7d9..49280fa481 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-chromium-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-chromium-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -134,14 +135,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-firefox-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-firefox-linux.json index fbd2cfd7d9..49280fa481 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-firefox-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-firefox-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -134,14 +135,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-webkit-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-webkit-linux.json index fbd2cfd7d9..49280fa481 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-webkit-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/cellTyping-json-webkit-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -134,14 +135,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-chromium-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-chromium-linux.json index 262b827f38..7b53b413be 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-chromium-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-chromium-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -140,14 +141,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-firefox-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-firefox-linux.json index 262b827f38..7b53b413be 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-firefox-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-firefox-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -140,14 +141,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-webkit-linux.json b/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-webkit-linux.json index 262b827f38..7b53b413be 100644 --- a/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-webkit-linux.json +++ b/tests/src/end-to-end/tables/tables.test.ts-snapshots/tabCells-json-webkit-linux.json @@ -7,13 +7,14 @@ { "type": "blockContainer", "attrs": { - "id": "0", - "textColor": "default", - "backgroundColor": "default" + "id": "0" }, "content": [ { "type": "table", + "attrs": { + "textColor": "default" + }, "content": [ { "type": "tableRow", @@ -140,14 +141,14 @@ { "type": "blockContainer", "attrs": { - "id": "1", - "textColor": "default", - "backgroundColor": "default" + "id": "1" }, "content": [ { "type": "paragraph", "attrs": { + "backgroundColor": "default", + "textColor": "default", "textAlignment": "left" } } diff --git a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html index 106a355568..9c30cd19ad 100644 --- a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html +++ b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html @@ -1,4 +1,4 @@ -

            Paragraph 1

            +

            Paragraph 1

            Heading 1

            1. @@ -6,7 +6,7 @@

              Heading 1

              -
            • +
            • Bullet List Item 1

            • @@ -52,4 +52,4 @@

              Heading 1

              />
              Placeholder
              -

              Paragraph 2

              +

              Paragraph 2

              \ No newline at end of file From 868433e499fe6d22e552417f41df8a383287b149 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Fri, 12 Sep 2025 14:33:29 +0200 Subject: [PATCH 6/7] Implemented PR feedback --- packages/core/src/editor/BlockNoteEditor.ts | 8 ---- .../core/src/editor/BlockNoteExtensions.ts | 4 +- .../schemaMigration/SchemaMigrationPlugin.ts | 37 ++++--------------- 3 files changed, 11 insertions(+), 38 deletions(-) diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts index aedfa0499b..d9d75a664f 100644 --- a/packages/core/src/editor/BlockNoteEditor.ts +++ b/packages/core/src/editor/BlockNoteEditor.ts @@ -571,13 +571,6 @@ export class BlockNoteEditor< headers: boolean; }; }; - - public readonly collaboration: BlockNoteEditorOptions< - BSchema, - ISchema, - SSchema - >["collaboration"]; - public static create< Options extends Partial> | undefined, >( @@ -625,7 +618,6 @@ export class BlockNoteEditor< ); } - this.collaboration = options.collaboration; this.dictionary = options.dictionary || en; this.settings = { tables: { diff --git a/packages/core/src/editor/BlockNoteExtensions.ts b/packages/core/src/editor/BlockNoteExtensions.ts index 38420e9b63..0fe6c0da7f 100644 --- a/packages/core/src/editor/BlockNoteExtensions.ts +++ b/packages/core/src/editor/BlockNoteExtensions.ts @@ -128,7 +128,9 @@ export const getBlockNoteExtensions = < editor: opts.editor, collaboration: opts.collaboration, }); - ret["schemaMigrationPlugin"] = new SchemaMigrationPlugin(opts.editor); + ret["schemaMigrationPlugin"] = new SchemaMigrationPlugin( + opts.collaboration.fragment, + ); } // Note: this is pretty hardcoded and will break when user provides plugins with same keys. diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts index 73799cb863..4e7cdcc913 100644 --- a/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts +++ b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts @@ -1,4 +1,5 @@ import { Plugin, PluginKey } from "@tiptap/pm/state"; +import { ySyncPluginKey } from "y-prosemirror"; import * as Y from "yjs"; import migrationRules from "./migrationRules/index.js"; @@ -12,59 +13,37 @@ import { BlockNoteEditor } from "../../../editor/BlockNoteEditor.js"; // and need to be fixed. These fixes are defined as `MigrationRule`s within the // `migrationRules` directory. export class SchemaMigrationPlugin extends BlockNoteExtension { + private migrationDone = false; + public static key() { return "schemaMigrationPlugin"; } - constructor(editor: BlockNoteEditor) { + constructor(fragment: Y.XmlFragment) { const pluginKey = new PluginKey(SchemaMigrationPlugin.key()); super(); this.addProsemirrorPlugin( new Plugin({ key: pluginKey, - // Plugin state used to ensure the migration transactions only run - // once, when the initial fragment is loaded. - state: { - init: () => ({ migrationDone: false }), - apply: (tr, oldPluginState) => { - const newPluginState = tr.getMeta(pluginKey); - if (newPluginState) { - return newPluginState; - } - - return oldPluginState; - }, - }, appendTransaction: (transactions, _oldState, newState) => { - if (pluginKey.getState(newState).migrationDone) { - return undefined; - } - - const ySyncPlugin: Plugin<{ doc: Y.XmlFragment["doc"] }> | undefined = - (editor.extensions["ySyncPlugin"] as BlockNoteExtension | undefined) - ?.plugins[0]; - if (!ySyncPlugin) { + if (this.migrationDone) { return undefined; } if ( transactions.length !== 1 || - !transactions[0].getMeta(ySyncPlugin) + !transactions[0].getMeta(ySyncPluginKey) ) { return undefined; } - const fragment = editor.collaboration?.fragment; - if (!fragment) { - return undefined; - } - const tr = newState.tr; for (const migrationRule of migrationRules) { migrationRule(fragment, tr); } - tr.setMeta(pluginKey, { migrationDone: true }); + + this.migrationDone = true; return tr; }, From 2b7a83bbbb4f2f199fc8c699b1b55d5ddd0ede07 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Fri, 12 Sep 2025 14:44:55 +0200 Subject: [PATCH 7/7] Fixed build --- .../Collaboration/schemaMigration/SchemaMigrationPlugin.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts index 4e7cdcc913..992ee4559f 100644 --- a/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts +++ b/packages/core/src/extensions/Collaboration/schemaMigration/SchemaMigrationPlugin.ts @@ -2,9 +2,8 @@ import { Plugin, PluginKey } from "@tiptap/pm/state"; import { ySyncPluginKey } from "y-prosemirror"; import * as Y from "yjs"; -import migrationRules from "./migrationRules/index.js"; import { BlockNoteExtension } from "../../../editor/BlockNoteExtension.js"; -import { BlockNoteEditor } from "../../../editor/BlockNoteEditor.js"; +import migrationRules from "./migrationRules/index.js"; // This plugin allows us to update collaboration YDocs whenever BlockNote's // underlying ProseMirror schema changes. The plugin reads the current Yjs