diff --git a/.gitignore b/.gitignore index bc0541fef..ce6d13ba4 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,5 @@ release /test-results/ /playwright-report/ /playwright/.cache/ +.env +*.pem diff --git a/.todo.txt b/.todo.txt new file mode 100644 index 000000000..446b47ddc --- /dev/null +++ b/.todo.txt @@ -0,0 +1,7 @@ + +review toolbar code +fix design of menus (smaller items, border?) + +see if addToHistory: false is needed +track last affected position to update toolbar +enable / disable show selection plugin \ No newline at end of file diff --git a/docs/pages/examples/_meta.json b/docs/pages/examples/_meta.json index aa81bb87a..ea06b6952 100644 --- a/docs/pages/examples/_meta.json +++ b/docs/pages/examples/_meta.json @@ -7,5 +7,6 @@ "interoperability": "Interoperability", "custom-schema": "Custom Schemas", "collaboration": "Collaboration", - "extensions": "Extensions" + "extensions": "Extensions", + "ai": "AI" } diff --git a/examples/01-basic/01-minimal/.bnexample.json b/examples/01-basic/01-minimal/.bnexample.json index 6d4a02dd5..03874b6a6 100644 --- a/examples/01-basic/01-minimal/.bnexample.json +++ b/examples/01-basic/01-minimal/.bnexample.json @@ -2,5 +2,8 @@ "playground": true, "docs": true, "author": "matthewlipski", - "tags": ["Basic"] + "tags": ["Basic"], + "dependencies": { + "@blocknote/xl-ai": "latest" + } } diff --git a/examples/01-basic/01-minimal/App.tsx b/examples/01-basic/01-minimal/App.tsx index a3b92bafd..c43b687b9 100644 --- a/examples/01-basic/01-minimal/App.tsx +++ b/examples/01-basic/01-minimal/App.tsx @@ -1,12 +1,95 @@ +import { + AIBlock, + AIBlockToolbarProsemirrorPlugin, + AIButton, + AIShowSelectionPlugin, + BlockNoteAIContextProvider, + BlockNoteAIUI, + aiBlockTypeSelectItems, + locales as aiLocales, + getAISlashMenuItems, + useBlockNoteAIContext, +} from "@blocknote/xl-ai"; + +import { + BlockNoteEditor, + BlockNoteSchema, + defaultBlockSpecs, + filterSuggestionItems, + locales, +} from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; -import { useCreateBlockNote } from "@blocknote/react"; +import { + FormattingToolbar, + FormattingToolbarController, + SuggestionMenuController, + blockTypeSelectItems, + getDefaultReactSlashMenuItems, + getFormattingToolbarItems, + useCreateBlockNote, +} from "@blocknote/react"; +import "@blocknote/xl-ai/style.css"; +const schema = BlockNoteSchema.create({ + blockSpecs: { + ...defaultBlockSpecs, + ai: AIBlock, + }, +}); export default function App() { // Creates a new editor instance. - const editor = useCreateBlockNote(); + const editor = useCreateBlockNote({ + schema, + dictionary: { + ...locales.en, + ai: aiLocales.en, + } as any, + _extensions: { + // TODO: things will break when user provides different keys. Define name on plugins instead? + aiBlockToolbar: new AIBlockToolbarProsemirrorPlugin(), + aiSelection: new AIShowSelectionPlugin(), + }, + }); // Renders the editor instance using a React component. - return ; + return ( + + + + ( + + {...getFormattingToolbarItems([ + ...blockTypeSelectItems(editor.dictionary), + ...aiBlockTypeSelectItems(aiLocales.en), + ])} + + + )} + /> + + + {/* TODO: Side Menu customization */} + + ); +} + +function SuggestionMenu(props: { editor: BlockNoteEditor }) { + const ctx = useBlockNoteAIContext(); + return ( + + filterSuggestionItems( + [ + ...getDefaultReactSlashMenuItems(props.editor), + ...getAISlashMenuItems(props.editor as any, ctx), // TODO + ], + query + ) + } + /> + ); } diff --git a/examples/01-basic/01-minimal/package.json b/examples/01-basic/01-minimal/package.json index 5f028d3f3..8cf288958 100644 --- a/examples/01-basic/01-minimal/package.json +++ b/examples/01-basic/01-minimal/package.json @@ -17,7 +17,8 @@ "@blocknote/mantine": "latest", "@blocknote/shadcn": "latest", "react": "^18.3.1", - "react-dom": "^18.3.1" + "react-dom": "^18.3.1", + "@blocknote/xl-ai": "latest" }, "devDependencies": { "@types/react": "^18.0.25", diff --git a/examples/01-basic/01-minimal/vite.config.ts b/examples/01-basic/01-minimal/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/01-minimal/vite.config.ts +++ b/examples/01-basic/01-minimal/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/02-block-objects/vite.config.ts b/examples/01-basic/02-block-objects/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/02-block-objects/vite.config.ts +++ b/examples/01-basic/02-block-objects/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/03-multi-column/vite.config.ts b/examples/01-basic/03-multi-column/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/03-multi-column/vite.config.ts +++ b/examples/01-basic/03-multi-column/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/04-all-blocks/vite.config.ts b/examples/01-basic/04-all-blocks/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/04-all-blocks/vite.config.ts +++ b/examples/01-basic/04-all-blocks/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/05-removing-default-blocks/vite.config.ts b/examples/01-basic/05-removing-default-blocks/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/05-removing-default-blocks/vite.config.ts +++ b/examples/01-basic/05-removing-default-blocks/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/06-block-manipulation/vite.config.ts b/examples/01-basic/06-block-manipulation/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/06-block-manipulation/vite.config.ts +++ b/examples/01-basic/06-block-manipulation/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/07-selection-blocks/vite.config.ts b/examples/01-basic/07-selection-blocks/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/07-selection-blocks/vite.config.ts +++ b/examples/01-basic/07-selection-blocks/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/08-ariakit/vite.config.ts b/examples/01-basic/08-ariakit/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/08-ariakit/vite.config.ts +++ b/examples/01-basic/08-ariakit/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/09-shadcn/vite.config.ts b/examples/01-basic/09-shadcn/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/09-shadcn/vite.config.ts +++ b/examples/01-basic/09-shadcn/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/10-localization/vite.config.ts b/examples/01-basic/10-localization/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/10-localization/vite.config.ts +++ b/examples/01-basic/10-localization/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/11-custom-placeholder/vite.config.ts b/examples/01-basic/11-custom-placeholder/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/11-custom-placeholder/vite.config.ts +++ b/examples/01-basic/11-custom-placeholder/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/01-basic/testing/vite.config.ts b/examples/01-basic/testing/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/01-basic/testing/vite.config.ts +++ b/examples/01-basic/testing/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/02-backend/01-file-uploading/vite.config.ts b/examples/02-backend/01-file-uploading/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/02-backend/01-file-uploading/vite.config.ts +++ b/examples/02-backend/01-file-uploading/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/02-backend/02-saving-loading/vite.config.ts b/examples/02-backend/02-saving-loading/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/02-backend/02-saving-loading/vite.config.ts +++ b/examples/02-backend/02-saving-loading/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/02-backend/03-s3/vite.config.ts b/examples/02-backend/03-s3/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/02-backend/03-s3/vite.config.ts +++ b/examples/02-backend/03-s3/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/02-backend/04-rendering-static-documents/vite.config.ts b/examples/02-backend/04-rendering-static-documents/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/02-backend/04-rendering-static-documents/vite.config.ts +++ b/examples/02-backend/04-rendering-static-documents/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/01-ui-elements-remove/vite.config.ts b/examples/03-ui-components/01-ui-elements-remove/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/01-ui-elements-remove/vite.config.ts +++ b/examples/03-ui-components/01-ui-elements-remove/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx index 48400a273..ebbf6a580 100644 --- a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx +++ b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx @@ -27,7 +27,7 @@ export function BlueButton() { }, editor); return ( - { editor.toggleStyles({ @@ -37,6 +37,6 @@ export function BlueButton() { }} isSelected={isSelected}> Blue - + ); } diff --git a/examples/03-ui-components/02-formatting-toolbar-buttons/vite.config.ts b/examples/03-ui-components/02-formatting-toolbar-buttons/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/02-formatting-toolbar-buttons/vite.config.ts +++ b/examples/03-ui-components/02-formatting-toolbar-buttons/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/03-formatting-toolbar-block-type-items/vite.config.ts b/examples/03-ui-components/03-formatting-toolbar-block-type-items/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/03-formatting-toolbar-block-type-items/vite.config.ts +++ b/examples/03-ui-components/03-formatting-toolbar-block-type-items/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/04-side-menu-buttons/vite.config.ts b/examples/03-ui-components/04-side-menu-buttons/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/04-side-menu-buttons/vite.config.ts +++ b/examples/03-ui-components/04-side-menu-buttons/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/05-side-menu-drag-handle-items/vite.config.ts b/examples/03-ui-components/05-side-menu-drag-handle-items/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/05-side-menu-drag-handle-items/vite.config.ts +++ b/examples/03-ui-components/05-side-menu-drag-handle-items/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx index 984cf3d4e..95c348144 100644 --- a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx +++ b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx @@ -4,18 +4,19 @@ import { PartialBlock, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { DefaultReactSuggestionItem, getDefaultReactSlashMenuItems, SuggestionMenuController, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; import { HiOutlineGlobeAlt } from "react-icons/hi"; // Custom Slash Menu item to insert a block after the current one. const insertHelloWorldItem = (editor: BlockNoteEditor) => ({ + key: "hello_world", title: "Insert Hello World", onItemClick: () => { // Block that the text cursor is currently in. diff --git a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/vite.config.ts b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/vite.config.ts +++ b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/07-suggestion-menus-slash-menu-component/vite.config.ts b/examples/03-ui-components/07-suggestion-menus-slash-menu-component/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/07-suggestion-menus-slash-menu-component/vite.config.ts +++ b/examples/03-ui-components/07-suggestion-menus-slash-menu-component/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/vite.config.ts b/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/vite.config.ts +++ b/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/vite.config.ts b/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/vite.config.ts +++ b/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/10-suggestion-menus-grid-mentions/vite.config.ts b/examples/03-ui-components/10-suggestion-menus-grid-mentions/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/10-suggestion-menus-grid-mentions/vite.config.ts +++ b/examples/03-ui-components/10-suggestion-menus-grid-mentions/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx b/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx index d1f144446..89ff9dc56 100644 --- a/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx +++ b/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx @@ -49,7 +49,7 @@ export const FileReplaceButton = () => { return ( - setIsOpen(!isOpen)} isSelected={isOpen} diff --git a/examples/03-ui-components/11-uppy-file-panel/vite.config.ts b/examples/03-ui-components/11-uppy-file-panel/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/11-uppy-file-panel/vite.config.ts +++ b/examples/03-ui-components/11-uppy-file-panel/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/12-static-formatting-toolbar/vite.config.ts b/examples/03-ui-components/12-static-formatting-toolbar/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/12-static-formatting-toolbar/vite.config.ts +++ b/examples/03-ui-components/12-static-formatting-toolbar/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/13-custom-ui/vite.config.ts b/examples/03-ui-components/13-custom-ui/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/13-custom-ui/vite.config.ts +++ b/examples/03-ui-components/13-custom-ui/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx b/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx index b393d6077..6e322fca0 100644 --- a/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx +++ b/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx @@ -5,12 +5,12 @@ export function AlertButton(props: LinkToolbarProps) { const Components = useComponentsContext()!; return ( - { window.alert(`Link URL: ${props.url}`); }}> Open Alert - + ); } diff --git a/examples/03-ui-components/link-toolbar-buttons/vite.config.ts b/examples/03-ui-components/link-toolbar-buttons/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/03-ui-components/link-toolbar-buttons/vite.config.ts +++ b/examples/03-ui-components/link-toolbar-buttons/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/04-theming/01-theming-dom-attributes/vite.config.ts b/examples/04-theming/01-theming-dom-attributes/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/04-theming/01-theming-dom-attributes/vite.config.ts +++ b/examples/04-theming/01-theming-dom-attributes/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/04-theming/02-changing-font/vite.config.ts b/examples/04-theming/02-changing-font/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/04-theming/02-changing-font/vite.config.ts +++ b/examples/04-theming/02-changing-font/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/04-theming/03-theming-css/vite.config.ts b/examples/04-theming/03-theming-css/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/04-theming/03-theming-css/vite.config.ts +++ b/examples/04-theming/03-theming-css/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/04-theming/04-theming-css-variables/vite.config.ts b/examples/04-theming/04-theming-css-variables/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/04-theming/04-theming-css-variables/vite.config.ts +++ b/examples/04-theming/04-theming-css-variables/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/04-theming/05-theming-css-variables-code/vite.config.ts b/examples/04-theming/05-theming-css-variables-code/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/04-theming/05-theming-css-variables-code/vite.config.ts +++ b/examples/04-theming/05-theming-css-variables-code/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/05-interoperability/01-converting-blocks-to-html/vite.config.ts b/examples/05-interoperability/01-converting-blocks-to-html/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/05-interoperability/01-converting-blocks-to-html/vite.config.ts +++ b/examples/05-interoperability/01-converting-blocks-to-html/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/05-interoperability/02-converting-blocks-from-html/vite.config.ts b/examples/05-interoperability/02-converting-blocks-from-html/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/05-interoperability/02-converting-blocks-from-html/vite.config.ts +++ b/examples/05-interoperability/02-converting-blocks-from-html/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/05-interoperability/03-converting-blocks-to-md/vite.config.ts b/examples/05-interoperability/03-converting-blocks-to-md/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/05-interoperability/03-converting-blocks-to-md/vite.config.ts +++ b/examples/05-interoperability/03-converting-blocks-to-md/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/05-interoperability/04-converting-blocks-from-md/vite.config.ts b/examples/05-interoperability/04-converting-blocks-from-md/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/05-interoperability/04-converting-blocks-from-md/vite.config.ts +++ b/examples/05-interoperability/04-converting-blocks-from-md/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/05-interoperability/05-converting-blocks-to-pdf/vite.config.ts b/examples/05-interoperability/05-converting-blocks-to-pdf/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/05-interoperability/05-converting-blocks-to-pdf/vite.config.ts +++ b/examples/05-interoperability/05-converting-blocks-to-pdf/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/05-interoperability/06-converting-blocks-to-docx/vite.config.ts b/examples/05-interoperability/06-converting-blocks-to-docx/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/05-interoperability/06-converting-blocks-to-docx/vite.config.ts +++ b/examples/05-interoperability/06-converting-blocks-to-docx/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/01-alert-block/App.tsx b/examples/06-custom-schema/01-alert-block/App.tsx index 6d58d740e..044486440 100644 --- a/examples/06-custom-schema/01-alert-block/App.tsx +++ b/examples/06-custom-schema/01-alert-block/App.tsx @@ -29,6 +29,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert an Alert block const insertAlert = (editor: typeof schema.BlockNoteEditor) => ({ + key: "alert", title: "Alert", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/01-alert-block/vite.config.ts b/examples/06-custom-schema/01-alert-block/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/01-alert-block/vite.config.ts +++ b/examples/06-custom-schema/01-alert-block/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx index c1fec94a4..f4116fbec 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx @@ -12,7 +12,7 @@ import { useCreateBlockNote, } from "@blocknote/react"; -import { Mention } from "./Mention"; +import { Mention } from "./Mention.js"; // Our schema with inline content specs, which contain the configs and // implementations for inline content that we want our editor to use. @@ -32,6 +32,7 @@ const getMentionMenuItems = ( const users = ["Steve", "Bob", "Joe", "Mike"]; return users.map((user) => ({ + key: user.toLowerCase(), title: user, onItemClick: () => { editor.insertInlineContent([ diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/vite.config.ts b/examples/06-custom-schema/02-suggestion-menus-mentions/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/vite.config.ts +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/03-font-style/App.tsx b/examples/06-custom-schema/03-font-style/App.tsx index 4cae9935b..73baf53e9 100644 --- a/examples/06-custom-schema/03-font-style/App.tsx +++ b/examples/06-custom-schema/03-font-style/App.tsx @@ -45,7 +45,7 @@ const SetFontStyleButton = () => { const Components = useComponentsContext()!; return ( - } diff --git a/examples/06-custom-schema/03-font-style/vite.config.ts b/examples/06-custom-schema/03-font-style/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/03-font-style/vite.config.ts +++ b/examples/06-custom-schema/03-font-style/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/04-pdf-file-block/App.tsx b/examples/06-custom-schema/04-pdf-file-block/App.tsx index 1c3129e3b..42edf9068 100644 --- a/examples/06-custom-schema/04-pdf-file-block/App.tsx +++ b/examples/06-custom-schema/04-pdf-file-block/App.tsx @@ -30,6 +30,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert a PDF block const insertPDF = (editor: typeof schema.BlockNoteEditor) => ({ + key: "pdf", title: "PDF", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/04-pdf-file-block/vite.config.ts b/examples/06-custom-schema/04-pdf-file-block/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/04-pdf-file-block/vite.config.ts +++ b/examples/06-custom-schema/04-pdf-file-block/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/react-custom-blocks/vite.config.ts b/examples/06-custom-schema/react-custom-blocks/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/react-custom-blocks/vite.config.ts +++ b/examples/06-custom-schema/react-custom-blocks/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/react-custom-inline-content/vite.config.ts b/examples/06-custom-schema/react-custom-inline-content/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/react-custom-inline-content/vite.config.ts +++ b/examples/06-custom-schema/react-custom-inline-content/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/06-custom-schema/react-custom-styles/App.tsx b/examples/06-custom-schema/react-custom-styles/App.tsx index f19533c79..107b86a7e 100644 --- a/examples/06-custom-schema/react-custom-styles/App.tsx +++ b/examples/06-custom-schema/react-custom-styles/App.tsx @@ -55,7 +55,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { return ( - { editor.toggleStyles({ @@ -64,8 +64,8 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={activeStyles.small}> Small - - + { editor.toggleStyles({ @@ -74,7 +74,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={!!activeStyles.fontSize}> Font size - + ); }; diff --git a/examples/06-custom-schema/react-custom-styles/vite.config.ts b/examples/06-custom-schema/react-custom-styles/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/06-custom-schema/react-custom-styles/vite.config.ts +++ b/examples/06-custom-schema/react-custom-styles/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/07-collaboration/01-partykit/vite.config.ts b/examples/07-collaboration/01-partykit/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/07-collaboration/01-partykit/vite.config.ts +++ b/examples/07-collaboration/01-partykit/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/07-collaboration/02-liveblocks/vite.config.ts b/examples/07-collaboration/02-liveblocks/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/07-collaboration/02-liveblocks/vite.config.ts +++ b/examples/07-collaboration/02-liveblocks/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/08-extensions/01-tiptap-arrow-conversion/vite.config.ts b/examples/08-extensions/01-tiptap-arrow-conversion/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/08-extensions/01-tiptap-arrow-conversion/vite.config.ts +++ b/examples/08-extensions/01-tiptap-arrow-conversion/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/09-ai/01-minimal/.bnexample.json b/examples/09-ai/01-minimal/.bnexample.json new file mode 100644 index 000000000..ac64e7193 --- /dev/null +++ b/examples/09-ai/01-minimal/.bnexample.json @@ -0,0 +1,13 @@ +{ + "playground": true, + "docs": true, + "author": "yousefed", + "tags": ["AI", "llm"], + "dependencies": { + "@blocknote/xl-ai": "latest", + "@mantine/core": "^7.10.1", + "ai": "^4.0.11", + "@ai-sdk/openai": "^1.0.6", + "@ai-sdk/groq": "^1.0.5" + } +} diff --git a/examples/09-ai/01-minimal/App.tsx b/examples/09-ai/01-minimal/App.tsx new file mode 100644 index 000000000..2eed9c2b9 --- /dev/null +++ b/examples/09-ai/01-minimal/App.tsx @@ -0,0 +1,129 @@ +import { + AIBlock, + AIBlockToolbarProsemirrorPlugin, + AIButton, + AIShowSelectionPlugin, + BlockNoteAIContextProvider, + BlockNoteAIUI, + aiBlockTypeSelectItems, + locales as aiLocales, + createBlockNoteAIClient, + getAISlashMenuItems, + useBlockNoteAIContext, +} from "@blocknote/xl-ai"; + +import { createGroq } from "@ai-sdk/groq"; +import { createOpenAI } from "@ai-sdk/openai"; +import { + BlockNoteEditor, + BlockNoteSchema, + defaultBlockSpecs, + filterSuggestionItems, + locales, +} from "@blocknote/core"; +import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; +import { + FormattingToolbar, + FormattingToolbarController, + SuggestionMenuController, + blockTypeSelectItems, + getDefaultReactSlashMenuItems, + getFormattingToolbarItems, + useCreateBlockNote, +} from "@blocknote/react"; +import "@blocknote/xl-ai/style.css"; +import { useMemo, useState } from "react"; +import { BasicAutocomplete } from "./AutoComplete.js"; + +const schema = BlockNoteSchema.create({ + blockSpecs: { + ...defaultBlockSpecs, + ai: AIBlock, + }, +}); + +const client = createBlockNoteAIClient({ + apiKey: "PLACEHOLDER", + baseURL: "https://localhost:3000/ai", +}); + +export default function App() { + const [aiModelString, setAiModelString] = useState( + "openai/gpt-4o-2024-08-06" + ); + // Creates a new editor instance. + const editor = useCreateBlockNote({ + schema, + dictionary: { + ...locales.en, + ai: aiLocales.en, + } as any, + _extensions: { + // TODO: things will break when user provides different keys. Define name on plugins instead? + aiBlockToolbar: new AIBlockToolbarProsemirrorPlugin(), + aiSelection: new AIShowSelectionPlugin(), + }, + }); + + const model = useMemo(() => { + const [provider, modelName] = aiModelString.split("/"); + if (provider === "openai") { + return createOpenAI({ + ...client.getProviderSettings("openai"), + })("gpt-4o-2024-08-06", {}); + } else if (provider === "groq") { + return createGroq({ + ...client.getProviderSettings("groq"), + })("llama-3.1-70b-versatile"); + } + throw new Error(`Unknown model: ${aiModelString}`); + }, [aiModelString]); + + // Renders the editor instance using a React component. + return ( +
+ + + + + ( + + {...getFormattingToolbarItems([ + ...blockTypeSelectItems(editor.dictionary), + ...aiBlockTypeSelectItems(aiLocales.en), + ])} + + + )} + /> + + + {/* TODO: Side Menu customization */} + +
+ ); +} + +function SuggestionMenu(props: { editor: BlockNoteEditor }) { + const ctx = useBlockNoteAIContext(); + return ( + + filterSuggestionItems( + [ + ...getDefaultReactSlashMenuItems(props.editor), + ...getAISlashMenuItems(props.editor as any, ctx), // TODO + ], + query + ) + } + /> + ); +} diff --git a/examples/09-ai/01-minimal/AutoComplete.tsx b/examples/09-ai/01-minimal/AutoComplete.tsx new file mode 100644 index 000000000..27217e899 --- /dev/null +++ b/examples/09-ai/01-minimal/AutoComplete.tsx @@ -0,0 +1,60 @@ +import { Combobox, TextInput, useCombobox } from "@mantine/core"; +import { AI_MODELS } from "./data/aimodels.js"; + +// https://mantine.dev/combobox/?e=BasicAutocomplete +export function BasicAutocomplete(props: { + value: string; + onChange: (value: string) => void; +}) { + const { value, onChange } = props; + const combobox = useCombobox(); + + const shouldFilterOptions = !AI_MODELS.some((item) => item === value); + const filteredOptions = shouldFilterOptions + ? AI_MODELS.filter((item) => + item.toLowerCase().includes(value.toLowerCase().trim()) + ) + : AI_MODELS; + + const options = filteredOptions.map((item) => ( + + {item} + + )); + + return ( + { + onChange(optionValue); + combobox.closeDropdown(); + }} + store={combobox} + withinPortal={false}> + + { + onChange(event.currentTarget.value); + combobox.openDropdown(); + combobox.updateSelectedOptionIndex(); + }} + onClick={() => combobox.openDropdown()} + onFocus={() => combobox.openDropdown()} + onBlur={() => combobox.closeDropdown()} + /> + + + + + {options.length === 0 ? ( + Nothing found + ) : ( + options + )} + + + + ); +} diff --git a/examples/09-ai/01-minimal/README.md b/examples/09-ai/01-minimal/README.md new file mode 100644 index 000000000..ceef0db5f --- /dev/null +++ b/examples/09-ai/01-minimal/README.md @@ -0,0 +1,7 @@ +# AI integration + +This example shows how to use the `@blocknote/xl-ai` package to add AI capabilities to BlockNote. + +**Relevant Docs:** + +- TODO diff --git a/examples/09-ai/01-minimal/data/aimodels.ts b/examples/09-ai/01-minimal/data/aimodels.ts new file mode 100644 index 000000000..d491820f0 --- /dev/null +++ b/examples/09-ai/01-minimal/data/aimodels.ts @@ -0,0 +1,36 @@ +export const AI_MODELS = [ + "openai/o1-preview", + "openai/o1-mini", + "openai/gpt-4o", + "openai/gpt-4o-2024-05-13", + "openai/gpt-4o-2024-08-06", + "openai/gpt-4o-2024-11-20", + "openai/gpt-4o-audio-preview", + "openai/gpt-4o-audio-preview-2024-10-01", + "openai/gpt-4o-mini", + "openai/gpt-4o-mini-2024-07-18", + "openai/gpt-4-turbo", + "openai/gpt-4-turbo-2024-04-09", + "openai/gpt-4-turbo-preview", + "openai/gpt-4-0125-preview", + "openai/gpt-4-1106-preview", + "openai/gpt-4", + "openai/gpt-4-0613", + "openai/gpt-3.5-turbo-0125", + "openai/gpt-3.5-turbo", + "openai/gpt-3.5-turbo-1106", + "groq/gemma2-9b-it", + "groq/gemma-7b-it", + "groq/llama3-groq-70b-8192-tool-use-preview", + "groq/llama3-groq-8b-8192-tool-use-preview", + "groq/llama-3.1-70b-versatile", + "groq/llama-3.1-8b-instant", + "groq/llama-3.2-1b-preview", + "groq/llama-3.2-3b-preview", + "groq/llama-3.2-11b-vision-preview", + "groq/llama-3.2-90b-vision-preview", + "groq/llama-guard-3-8b", + "groq/llama3-70b-8192", + "groq/llama3-8b-8192", + "groq/mixtral-8x7b-32768", +]; diff --git a/examples/09-ai/01-minimal/index.html b/examples/09-ai/01-minimal/index.html new file mode 100644 index 000000000..76bfd55b1 --- /dev/null +++ b/examples/09-ai/01-minimal/index.html @@ -0,0 +1,14 @@ + + + + + + AI integration + + +
+ + + diff --git a/examples/09-ai/01-minimal/main.tsx b/examples/09-ai/01-minimal/main.tsx new file mode 100644 index 000000000..f88b490fb --- /dev/null +++ b/examples/09-ai/01-minimal/main.tsx @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY +import React from "react"; +import { createRoot } from "react-dom/client"; +import App from "./App"; + +const root = createRoot(document.getElementById("root")!); +root.render( + + + +); diff --git a/examples/09-ai/01-minimal/package.json b/examples/09-ai/01-minimal/package.json new file mode 100644 index 000000000..dacc7d62f --- /dev/null +++ b/examples/09-ai/01-minimal/package.json @@ -0,0 +1,42 @@ +{ + "name": "@blocknote/example-minimal", + "description": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", + "private": true, + "version": "0.12.4", + "scripts": { + "start": "vite", + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "lint": "eslint . --max-warnings 0" + }, + "dependencies": { + "@blocknote/core": "latest", + "@blocknote/react": "latest", + "@blocknote/ariakit": "latest", + "@blocknote/mantine": "latest", + "@blocknote/shadcn": "latest", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "@blocknote/xl-ai": "latest", + "@mantine/core": "^7.10.1", + "ai": "^4.0.11", + "@ai-sdk/openai": "^1.0.6", + "@ai-sdk/groq": "^1.0.5" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "vite": "^5.3.4" + }, + "eslintConfig": { + "extends": [ + "../../../.eslintrc.js" + ] + }, + "eslintIgnore": [ + "dist" + ] +} \ No newline at end of file diff --git a/examples/09-ai/01-minimal/tsconfig.json b/examples/09-ai/01-minimal/tsconfig.json new file mode 100644 index 000000000..1bd8ab3c5 --- /dev/null +++ b/examples/09-ai/01-minimal/tsconfig.json @@ -0,0 +1,36 @@ +{ + "__comment": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext" + ], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "composite": true + }, + "include": [ + "." + ], + "__ADD_FOR_LOCAL_DEV_references": [ + { + "path": "../../../packages/core/" + }, + { + "path": "../../../packages/react/" + } + ] +} \ No newline at end of file diff --git a/examples/09-ai/01-minimal/vite.config.ts b/examples/09-ai/01-minimal/vite.config.ts new file mode 100644 index 000000000..f5ba737df --- /dev/null +++ b/examples/09-ai/01-minimal/vite.config.ts @@ -0,0 +1,32 @@ +// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY +import react from "@vitejs/plugin-react"; +import * as fs from "fs"; +import * as path from "path"; +import { defineConfig } from "vite"; +// import eslintPlugin from "vite-plugin-eslint"; +// https://vitejs.dev/config/ +export default defineConfig((conf) => ({ + plugins: [react()], + optimizeDeps: {}, + build: { + sourcemap: true, + }, + resolve: { + alias: + conf.command === "build" || + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) + ? {} + : ({ + // Comment out the lines below to load a built version of blocknote + // or, keep as is to load live from sources with live reload working + "@blocknote/core": path.resolve( + __dirname, + "../../../packages/core/src/" + ), + "@blocknote/react": path.resolve( + __dirname, + "../../../packages/react/src/" + ), + } as any), + }, +})); diff --git a/examples/vanilla-js/react-vanilla-custom-blocks/vite.config.ts b/examples/vanilla-js/react-vanilla-custom-blocks/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/vanilla-js/react-vanilla-custom-blocks/vite.config.ts +++ b/examples/vanilla-js/react-vanilla-custom-blocks/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/vanilla-js/react-vanilla-custom-inline-content/vite.config.ts b/examples/vanilla-js/react-vanilla-custom-inline-content/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/vanilla-js/react-vanilla-custom-inline-content/vite.config.ts +++ b/examples/vanilla-js/react-vanilla-custom-inline-content/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/examples/vanilla-js/react-vanilla-custom-styles/App.tsx b/examples/vanilla-js/react-vanilla-custom-styles/App.tsx index 813952cda..115a5b556 100644 --- a/examples/vanilla-js/react-vanilla-custom-styles/App.tsx +++ b/examples/vanilla-js/react-vanilla-custom-styles/App.tsx @@ -67,7 +67,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { return ( - { editor.toggleStyles({ @@ -76,8 +76,8 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={activeStyles.small}> Small - - + { editor.toggleStyles({ @@ -86,7 +86,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={!!activeStyles.fontSize}> Font size - + ); }; diff --git a/examples/vanilla-js/react-vanilla-custom-styles/vite.config.ts b/examples/vanilla-js/react-vanilla-custom-styles/vite.config.ts index f62ab20bc..f5ba737df 100644 --- a/examples/vanilla-js/react-vanilla-custom-styles/vite.config.ts +++ b/examples/vanilla-js/react-vanilla-custom-styles/vite.config.ts @@ -14,18 +14,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/package-lock.json b/package-lock.json index e1820ee70..a3bb80d53 100644 --- a/package-lock.json +++ b/package-lock.json @@ -156,6 +156,149 @@ } } }, + "node_modules/@ai-sdk/groq": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@ai-sdk/groq/-/groq-1.0.5.tgz", + "integrity": "sha512-uba8VCu8zzpIhWMbeC361iyWxNyRix7i8HKrc43MKkIY46Wo+laWrkWndUTs3d0YBXSiOwbY6OMxE1bZlx2glg==", + "dependencies": { + "@ai-sdk/provider": "1.0.1", + "@ai-sdk/provider-utils": "2.0.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/groq/node_modules/@ai-sdk/provider": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.0.1.tgz", + "integrity": "sha512-mV+3iNDkzUsZ0pR2jG0sVzU6xtQY5DtSCBy3JFycLp6PwjyLw/iodfL3MwdmMCRJWgs3dadcHejRnMvF9nGTBg==", + "dependencies": { + "json-schema": "^0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/groq/node_modules/@ai-sdk/provider-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-2.0.2.tgz", + "integrity": "sha512-IAvhKhdlXqiSmvx/D4uNlFYCl8dWT+M9K+IuEcSgnE2Aj27GWu8sDIpAf4r4Voc+wOUkOECVKQhFo8g9pozdjA==", + "dependencies": { + "@ai-sdk/provider": "1.0.1", + "eventsource-parser": "^3.0.0", + "nanoid": "^3.3.7", + "secure-json-parse": "^2.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/openai": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@ai-sdk/openai/-/openai-1.0.8.tgz", + "integrity": "sha512-wcTHM9qgRWGYVO3WxPSTN/RwnZ9R5/17xyo61iUCCSCZaAuJyh6fKddO0/oamwDp3BG7g+4wbfAyuTo32H+fHw==", + "dependencies": { + "@ai-sdk/provider": "1.0.2", + "@ai-sdk/provider-utils": "2.0.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/provider": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.0.2.tgz", + "integrity": "sha512-YYtP6xWQyaAf5LiWLJ+ycGTOeBLWrED7LUrvc+SQIWhGaneylqbaGsyQL7VouQUeQ4JZ1qKYZuhmi3W56HADPA==", + "dependencies": { + "json-schema": "^0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/provider-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-2.0.4.tgz", + "integrity": "sha512-GMhcQCZbwM6RoZCri0MWeEWXRt/T+uCxsmHEsTwNvEH3GDjNzchfX25C8ftry2MeEOOn6KfqCLSKomcgK6RoOg==", + "dependencies": { + "@ai-sdk/provider": "1.0.2", + "eventsource-parser": "^3.0.0", + "nanoid": "^3.3.8", + "secure-json-parse": "^2.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/react": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@ai-sdk/react/-/react-1.0.6.tgz", + "integrity": "sha512-8Hkserq0Ge6AEi7N4hlv2FkfglAGbkoAXEZ8YSp255c3PbnZz6+/5fppw+aROmZMOfNwallSRuy1i/iPa2rBpQ==", + "dependencies": { + "@ai-sdk/provider-utils": "2.0.4", + "@ai-sdk/ui-utils": "1.0.5", + "swr": "^2.2.5", + "throttleit": "2.1.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/ui-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@ai-sdk/ui-utils/-/ui-utils-1.0.5.tgz", + "integrity": "sha512-DGJSbDf+vJyWmFNexSPUsS1AAy7gtsmFmoSyNbNbJjwl9hRIf2dknfA1V0ahx6pg3NNklNYFm53L8Nphjovfvg==", + "dependencies": { + "@ai-sdk/provider": "1.0.2", + "@ai-sdk/provider-utils": "2.0.4", + "zod-to-json-schema": "^3.23.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", @@ -1541,9 +1684,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "engines": { "node": ">=6.9.0" } @@ -1672,9 +1815,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -3310,11 +3456,11 @@ } }, "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", "dependencies": { - "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-string-parser": "^7.24.8", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, @@ -3362,6 +3508,14 @@ "resolved": "tests", "link": true }, + "node_modules/@blocknote/xl-ai": { + "resolved": "packages/xl-ai", + "link": true + }, + "node_modules/@blocknote/xl-ai-server": { + "resolved": "packages/xl-ai-server", + "link": true + }, "node_modules/@blocknote/xl-docx-exporter": { "resolved": "packages/xl-docx-exporter", "link": true @@ -3379,6 +3533,43 @@ "resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz", "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" }, + "node_modules/@bundled-es-modules/cookie": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/cookie/-/cookie-2.0.0.tgz", + "integrity": "sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==", + "dev": true, + "dependencies": { + "cookie": "^0.5.0" + } + }, + "node_modules/@bundled-es-modules/cookie/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@bundled-es-modules/statuses": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/statuses/-/statuses-1.0.1.tgz", + "integrity": "sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==", + "dev": true, + "dependencies": { + "statuses": "^2.0.1" + } + }, + "node_modules/@bundled-es-modules/tough-cookie": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/tough-cookie/-/tough-cookie-0.1.6.tgz", + "integrity": "sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==", + "dev": true, + "dependencies": { + "@types/tough-cookie": "^4.0.5", + "tough-cookie": "^4.1.4" + } + }, "node_modules/@cloudflare/workerd-darwin-64": { "version": "1.20240129.0", "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20240129.0.tgz", @@ -3459,6 +3650,29 @@ "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20240129.0.tgz", "integrity": "sha512-VyHbih/bqh/RN2FRxnXznG0bpBIg9RfSP1ldbAVnCXFinjOdv0zm2P/RWqOVN9+FgU5sanRltwwT7jGngxZy8w==" }, + "node_modules/@cronvel/get-pixels": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/@cronvel/get-pixels/-/get-pixels-3.4.1.tgz", + "integrity": "sha512-gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g==", + "optional": true, + "dependencies": { + "jpeg-js": "^0.4.4", + "ndarray": "^1.0.19", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.10", + "pngjs": "^6.0.0" + } + }, + "node_modules/@cronvel/get-pixels/node_modules/pngjs": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", + "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", + "optional": true, + "engines": { + "node": ">=12.13.0" + } + }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", @@ -4111,6 +4325,14 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@ewoudenberg/difflib": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@ewoudenberg/difflib/-/difflib-0.1.0.tgz", + "integrity": "sha512-OU5P5mJyD3OoWYMWY+yIgwvgNS9cFAU10f+DDuvtogcWQOoJIsQ4Hy2McSfUfhKjq8L0FuWVb4Rt7kgA+XK86A==", + "dependencies": { + "heap": ">= 0.2.0" + } + }, "node_modules/@fastify/busboy": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", @@ -4197,6 +4419,17 @@ "react": ">= 16" } }, + "node_modules/@hono/node-server": { + "version": "1.13.7", + "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.13.7.tgz", + "integrity": "sha512-kTfUMsoloVKtRA2fLiGSd9qBddmru9KadNyhJCwgKBxTiNkaAJEwkVN9KV/rS4HtmmNRtUh6P+YpmjRMl0d9vQ==", + "engines": { + "node": ">=18.14.1" + }, + "peerDependencies": { + "hono": "^4" + } + }, "node_modules/@hookform/resolvers": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.6.0.tgz", @@ -7347,6 +7580,20 @@ "@octokit/openapi-types": "^18.0.0" } }, + "node_modules/@open-draft/until": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz", + "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==", + "dev": true + }, + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/@panva/hkdf": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.1.1.tgz", @@ -10045,6 +10292,17 @@ "@types/ms": "*" } }, + "node_modules/@types/diff": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@types/diff/-/diff-6.0.0.tgz", + "integrity": "sha512-dhVCYGv3ZSbzmQaBSagrv1WJ6rXCdkyTcDyoNu1MD8JohI7pR7k8wdZEm+mvdxRKXyHVwckFzWU1vJc+Z29MlA==", + "dev": true + }, + "node_modules/@types/diff-match-patch": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/diff-match-patch/-/diff-match-patch-1.0.36.tgz", + "integrity": "sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==" + }, "node_modules/@types/emoji-mart": { "version": "3.0.14", "resolved": "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.14.tgz", @@ -10168,6 +10426,12 @@ "parse5": "^7.0.0" } }, + "node_modules/@types/json-diff": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.3.tgz", + "integrity": "sha512-Qvxm8fpRMv/1zZR3sQWImeRK2mBYJji20xF51Fq9Gt//Ed18u0x6/FNLogLS1xhfUWTEmDyqveJqn95ltB6Kvw==", + "dev": true + }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", @@ -10322,6 +10586,12 @@ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true }, + "node_modules/@types/statuses": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.5.tgz", + "integrity": "sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==", + "dev": true + }, "node_modules/@types/tough-cookie": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", @@ -11357,9 +11627,9 @@ "integrity": "sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==" }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "bin": { "acorn": "bin/acorn" }, @@ -11454,6 +11724,35 @@ "node": ">=8" } }, + "node_modules/ai": { + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/ai/-/ai-4.0.14.tgz", + "integrity": "sha512-0Cefmf13LItpef4PotGnVX37vpx0CGxAcMypS429PweGOMAR913jxX3yPtRyS5S3pcKOK006phRZKLZreTBgmg==", + "dependencies": { + "@ai-sdk/provider": "1.0.2", + "@ai-sdk/provider-utils": "2.0.4", + "@ai-sdk/react": "1.0.6", + "@ai-sdk/ui-utils": "1.0.5", + "@opentelemetry/api": "1.9.0", + "jsondiffpatch": "0.6.0", + "zod-to-json-schema": "^3.23.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -12642,6 +12941,12 @@ "node": ">=10" } }, + "node_modules/chroma-js": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.6.0.tgz", + "integrity": "sha512-BLHvCB9s8Z1EV4ethr6xnkl/P2YRFOGqfgvuMG/MyCbZPrTA+NeiByY6XvgF0zP4/2deU2CXnWyMa3zu1LqQ3A==", + "optional": true + }, "node_modules/chrome-trace-event": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", @@ -13020,6 +13325,14 @@ "color-support": "bin.js" } }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "engines": { + "node": ">=0.1.90" + } + }, "node_modules/columnify": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", @@ -13417,6 +13730,15 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, + "node_modules/cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha512-WXlK/m+Di8DMMcCjcWr4i+XzcQra9eCdXIJrgh4TUgh0pIS/yJduLxS9JgefsHJ/YVLdgPtXm9r62W92MvanEQ==", + "optional": true, + "dependencies": { + "uniq": "^1.0.0" + } + }, "node_modules/cytoscape": { "version": "3.29.2", "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.29.2.tgz", @@ -14234,6 +14556,11 @@ "node": ">=0.3.1" } }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -14371,6 +14698,17 @@ "node": ">=10" } }, + "node_modules/dreamopt": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/dreamopt/-/dreamopt-0.8.0.tgz", + "integrity": "sha512-vyJTp8+mC+G+5dfgsY+r3ckxlz+QMX40VjPQsZc5gxVAxLmi64TBoVkP54A/pRAXMXsbu2GMMBrZPxNv23waMg==", + "dependencies": { + "wordwrap": ">=0.0.2" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", @@ -14631,10 +14969,9 @@ } }, "node_modules/es-module-lexer": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", - "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", - "peer": true + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" }, "node_modules/es-object-atoms": { "version": "1.0.0", @@ -15421,6 +15758,14 @@ "node": ">=0.8.x" } }, + "node_modules/eventsource-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.0.tgz", + "integrity": "sha512-T1C0XCUimhxVQzW4zFipdx0SficT651NnkR0ZSH3yQwh+mFMdLfgjABVi4YtMTtaL4s168593DaoaRLMqryavA==", + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -15565,6 +15910,11 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "node_modules/fast-myers-diff": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fast-myers-diff/-/fast-myers-diff-3.2.0.tgz", + "integrity": "sha512-DxNm4a3gnV35AluvqjeAV3Zx3CAySs0tsaDjnex5JhnJAa2rxEUVCwmaL2gpz42ea1B+IJorlo7XLThXUaTQog==" + }, "node_modules/fast-xml-parser": { "version": "4.2.5", "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", @@ -16453,6 +16803,15 @@ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, + "node_modules/graphql": { + "version": "16.9.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", + "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, "node_modules/gray-matter": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", @@ -17505,6 +17864,17 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/headers-polyfill": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-4.0.3.tgz", + "integrity": "sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==", + "dev": true + }, + "node_modules/heap": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz", + "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==" + }, "node_modules/hex-rgb": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz", @@ -17524,6 +17894,14 @@ "react-is": "^16.7.0" } }, + "node_modules/hono": { + "version": "4.6.12", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.6.12.tgz", + "integrity": "sha512-eHtf4kSDNw6VVrdbd5IQi16r22m3s7mWPLd7xOMhg1a/Yyb1A0qpUFq8xYMX4FMuDe1nTKeMX5rTx7Nmw+a+Ag==", + "engines": { + "node": ">=16.9.0" + } + }, "node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", @@ -17969,6 +18347,12 @@ "loose-envify": "^1.0.0" } }, + "node_modules/iota-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==", + "optional": true + }, "node_modules/ip-address": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", @@ -18350,6 +18734,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-node-process": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz", + "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==", + "dev": true + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -18414,13 +18804,18 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "node_modules/is-reference": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", - "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", "dependencies": { - "@types/estree": "*" + "@types/estree": "^1.0.6" } }, + "node_modules/is-reference/node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" + }, "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", @@ -18826,6 +19221,12 @@ "url": "https://github.com/sponsors/panva" } }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", + "optional": true + }, "node_modules/js-base64": { "version": "3.7.7", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", @@ -18944,6 +19345,47 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, + "node_modules/json-diff": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/json-diff/-/json-diff-1.0.6.tgz", + "integrity": "sha512-tcFIPRdlc35YkYdGxcamJjllUhXWv4n2rK9oJ2RsAzV4FBkuV4ojKEDgcZ+kpKxDmJKv+PFK65+1tVVOnSeEqA==", + "dependencies": { + "@ewoudenberg/difflib": "0.1.0", + "colors": "^1.4.0", + "dreamopt": "~0.8.0" + }, + "bin": { + "json-diff": "bin/json-diff.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/json-diff-kit": { + "version": "1.0.29", + "resolved": "https://registry.npmjs.org/json-diff-kit/-/json-diff-kit-1.0.29.tgz", + "integrity": "sha512-+Ir9l5mvv2UB4ZiSpwmobTd9iImwHMWQ9vH/o4EqbKflIQssRXy7YRPka4ppBVCyA1fojdnURN3ht/pYW1l9jA==", + "dependencies": { + "commander": "^11.1.0", + "fast-myers-diff": "^3.0.1", + "lodash": "^4.17.21", + "prompts": "^2.4.2" + }, + "bin": { + "jsondiff": "bin/jsondiff.cjs" + }, + "optionalDependencies": { + "terminal-kit": "^3.0.1" + } + }, + "node_modules/json-diff-kit/node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "engines": { + "node": ">=16" + } + }, "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", @@ -18955,6 +19397,11 @@ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -18997,10 +19444,37 @@ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/jsondiffpatch": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.6.0.tgz", + "integrity": "sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==", + "dependencies": { + "@types/diff-match-patch": "^1.0.36", + "chalk": "^5.3.0", + "diff-match-patch": "^1.0.5" + }, + "bin": { + "jsondiffpatch": "bin/jsondiffpatch.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/jsondiffpatch/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { "universalify": "^2.0.0" @@ -19186,6 +19660,15 @@ "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz", "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==" }, + "node_modules/lazyness": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/lazyness/-/lazyness-1.2.0.tgz", + "integrity": "sha512-KenL6EFbwxBwRxG93t0gcUyi0Nw0Ub31FJKN1laA4UscdkL1K1AxUd0gYZdcLU3v+x+wcFi4uQKS5hL+fk500g==", + "optional": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/lerna": { "version": "5.6.2", "resolved": "https://registry.npmjs.org/lerna/-/lerna-5.6.2.tgz", @@ -21722,6 +22205,136 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, + "node_modules/msw": { + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/msw/-/msw-2.4.8.tgz", + "integrity": "sha512-a+FUW1m5yT8cV9GBy0L/cbNg0EA4//SKEzgu3qFrpITrWYeZmqfo7dqtM74T2lAl69jjUjjCaEhZKaxG2Ns8DA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@bundled-es-modules/cookie": "^2.0.0", + "@bundled-es-modules/statuses": "^1.0.1", + "@bundled-es-modules/tough-cookie": "^0.1.6", + "@inquirer/confirm": "^3.0.0", + "@mswjs/interceptors": "^0.35.6", + "@open-draft/until": "^2.1.0", + "@types/cookie": "^0.6.0", + "@types/statuses": "^2.0.4", + "chalk": "^4.1.2", + "graphql": "^16.8.1", + "headers-polyfill": "^4.0.2", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.2", + "path-to-regexp": "^6.3.0", + "strict-event-emitter": "^0.5.1", + "type-fest": "^4.9.0", + "yargs": "^17.7.2" + }, + "bin": { + "msw": "cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mswjs" + }, + "peerDependencies": { + "typescript": ">= 4.8.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/msw-snapshot": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/msw-snapshot/-/msw-snapshot-5.2.0.tgz", + "integrity": "sha512-vcgRtVkE8ZRoDZ5IDpaJ4Mdwx/SdwnJXMIw9gm3LYSQTQxJBUwda+txMe6Sn20cYDF3a+VpmWhhnQyZXGvAs5A==", + "dev": true, + "peerDependencies": { + "msw": "^2.0.0" + } + }, + "node_modules/msw/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/msw/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/msw/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/msw/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/msw/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/msw/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/multimatch": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", @@ -21786,9 +22399,9 @@ "devOptional": true }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "funding": [ { "type": "github", @@ -21814,6 +22427,32 @@ "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", "dev": true }, + "node_modules/ndarray": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", + "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", + "optional": true, + "dependencies": { + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" + } + }, + "node_modules/ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha512-51cECUJMT0rUZNQa09EoKsnFeDL4x2dHRT0VR5U2H5ZgEcm95ZDWcMA5JShroXjHOejmAD/fg8+H+OvUnVXz2g==", + "optional": true, + "dependencies": { + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" + } + }, + "node_modules/ndarray/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "optional": true + }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", @@ -21969,6 +22608,15 @@ "node": "^10 || ^12 || >=14" } }, + "node_modules/nextgen-events": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/nextgen-events/-/nextgen-events-1.5.3.tgz", + "integrity": "sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==", + "optional": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/nextra": { "version": "2.13.4", "resolved": "https://registry.npmjs.org/nextra/-/nextra-2.13.4.tgz", @@ -22059,6 +22707,15 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", "dev": true }, + "node_modules/node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha512-Jx5lPaaLdIaOsj2mVLWMWulXF6GQVdyLvNSxmiYCvZ8Ma2hfKX0POoR2kgKOqz+oFsRreq0yYZjQ2wjE9VNzCA==", + "optional": true, + "engines": { + "node": ">=v0.6.5" + } + }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", @@ -22991,6 +23648,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==", + "optional": true + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -23106,6 +23769,12 @@ "node": ">=0.10.0" } }, + "node_modules/outvariant": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz", + "integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==", + "dev": true + }, "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", @@ -24091,6 +24760,12 @@ "node": "14 || >=16.14" } }, + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -24172,9 +24847,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -24355,9 +25030,9 @@ } }, "node_modules/postcss": { - "version": "8.4.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", - "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", "funding": [ { "type": "opencollective", @@ -24374,8 +25049,8 @@ ], "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -24611,6 +25286,26 @@ "node": ">=10" } }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prompts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, "node_modules/promzard": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", @@ -26545,6 +27240,11 @@ "node": ">=4" } }, + "node_modules/secure-json-parse": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", + "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" + }, "node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", @@ -26613,6 +27313,18 @@ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" }, + "node_modules/seventh": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/seventh/-/seventh-0.9.2.tgz", + "integrity": "sha512-C+dnbBXIEycnrN6/CpFt/Rt8ccMzAX3wbwJU61RTfC8lYPMzSkKkAVWnUEMTZDHdvtlrTupZeCUK4G+uP4TmRQ==", + "optional": true, + "dependencies": { + "setimmediate": "^1.0.5" + }, + "engines": { + "node": ">=16.13.0" + } + }, "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", @@ -26785,6 +27497,11 @@ "node": ">= 10" } }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -26864,9 +27581,9 @@ } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "engines": { "node": ">=0.10.0" } @@ -27000,6 +27717,15 @@ "get-source": "^2.0.12" } }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/std-env": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", @@ -27023,6 +27749,12 @@ "node": ">=10.0.0" } }, + "node_modules/strict-event-emitter": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz", + "integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==", + "dev": true + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -27031,6 +27763,15 @@ "safe-buffer": "~5.2.0" } }, + "node_modules/string-kit": { + "version": "0.18.3", + "resolved": "https://registry.npmjs.org/string-kit/-/string-kit-0.18.3.tgz", + "integrity": "sha512-G8cBS7wxxHhwQrKU0Y8SjZJRtCzZ61bMmMCO1bWm6N6y2obT0koGK8uWYloMOaVPPr8zk7Ic995uEd4Jw504AQ==", + "optional": true, + "engines": { + "node": ">=14.15.0" + } + }, "node_modules/string-natural-compare": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", @@ -27390,6 +28131,18 @@ "resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz", "integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==" }, + "node_modules/swr": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.2.5.tgz", + "integrity": "sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==", + "dependencies": { + "client-only": "^0.0.1", + "use-sync-external-store": "^1.2.0" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -27532,6 +28285,25 @@ "node": ">=4" } }, + "node_modules/terminal-kit": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/terminal-kit/-/terminal-kit-3.1.1.tgz", + "integrity": "sha512-R+R47zBQ14Ax2NZCLeuVl2GwonDwQN4iAsjQZICW8gMzaV+VIJMvL4qhUQtzDOhENADyNPQvY1Vz5G0bHHkLEA==", + "optional": true, + "dependencies": { + "@cronvel/get-pixels": "^3.4.1", + "chroma-js": "^2.4.2", + "lazyness": "^1.2.0", + "ndarray": "^1.0.19", + "nextgen-events": "^1.5.3", + "seventh": "^0.9.2", + "string-kit": "^0.18.1", + "tree-kit": "^0.8.7" + }, + "engines": { + "node": ">=16.13.0" + } + }, "node_modules/terser": { "version": "5.31.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz", @@ -27624,6 +28396,17 @@ "node": ">=0.8" } }, + "node_modules/throttleit": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz", + "integrity": "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -28018,6 +28801,15 @@ "node": ">=18" } }, + "node_modules/tree-kit": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/tree-kit/-/tree-kit-0.8.7.tgz", + "integrity": "sha512-BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ==", + "optional": true, + "engines": { + "node": ">=16.13.0" + } + }, "node_modules/treeverse": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/treeverse/-/treeverse-2.0.0.tgz", @@ -28414,6 +29206,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", + "optional": true + }, "node_modules/unique-filename": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", @@ -29546,8 +30344,7 @@ "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" }, "node_modules/workerd": { "version": "1.20240129.0", @@ -30102,6 +30899,14 @@ "url": "https://github.com/sponsors/colinhacks" } }, + "node_modules/zod-to-json-schema": { + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.23.5.tgz", + "integrity": "sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==", + "peerDependencies": { + "zod": "^3.23.3" + } + }, "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", @@ -30111,6 +30916,46 @@ "url": "https://github.com/sponsors/wooorm" } }, + "packages/ai": { + "name": "@blocknote/xl-ai", + "version": "0.19.1", + "extraneous": true, + "license": "AGPL-3.0 OR PROPRIETARY", + "dependencies": { + "@ai-sdk/openai": "^0.0.60", + "@blocknote/core": "^0.19.1", + "@blocknote/mantine": "^0.19.1", + "@blocknote/react": "^0.19.1", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^3.4.5", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "msw": "^2.4.8", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + } + }, "packages/ariakit": { "name": "@blocknote/ariakit", "version": "0.20.0", @@ -30523,6 +31368,133 @@ "url": "https://github.com/sponsors/isaacs" } }, + "packages/xl-ai": { + "name": "@blocknote/xl-ai", + "version": "0.20.0", + "license": "AGPL-3.0 OR PROPRIETARY", + "dependencies": { + "@ai-sdk/groq": "^1.0.5", + "@ai-sdk/openai": "^1.0.6", + "@blocknote/core": "^0.20.0", + "@blocknote/mantine": "^0.20.0", + "@blocknote/react": "^0.20.0", + "@ewoudenberg/difflib": "^0.1.0", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^4.0.11", + "diff": "^7.0.0", + "json-diff": "^1.0.6", + "json-diff-kit": "^1.0.29", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1" + }, + "devDependencies": { + "@types/diff": "^6.0.0", + "@types/json-diff": "^1.0.3", + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "msw": "^2.4.8", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + } + }, + "packages/xl-ai-server": { + "name": "@blocknote/xl-ai-server", + "version": "0.19.1", + "license": "AGPL-3.0 OR PROPRIETARY", + "dependencies": { + "@hono/node-server": "^1.13.7", + "hono": "^4.6.12" + }, + "devDependencies": { + "eslint": "^8.10.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-node": "^2.1.6", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + } + }, + "packages/xl-ai-server/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "packages/xl-ai-server/node_modules/vite-node": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.6.tgz", + "integrity": "sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==", + "dev": true, + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0 || ^6.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "packages/xl-ai/node_modules/diff": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz", + "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==", + "engines": { + "node": ">=0.3.1" + } + }, + "packages/xl-ai/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "packages/xl-docx-exporter": { "name": "@blocknote/xl-docx-exporter", "version": "0.20.0", @@ -30895,6 +31867,8 @@ "name": "@blocknote/example-editor", "version": "0.20.0", "dependencies": { + "@ai-sdk/groq": "^1.0.5", + "@ai-sdk/openai": "^1.0.6", "@aws-sdk/client-s3": "^3.609.0", "@aws-sdk/s3-request-presigner": "^3.609.0", "@blocknote/ariakit": "^0.20.0", @@ -30903,6 +31877,7 @@ "@blocknote/react": "^0.20.0", "@blocknote/server-util": "^0.20.0", "@blocknote/shadcn": "^0.20.0", + "@blocknote/xl-ai": "^0.20.0", "@blocknote/xl-multi-column": "^0.20.0", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", @@ -30922,6 +31897,7 @@ "@uppy/status-bar": "^3.1.1", "@uppy/webcam": "^3.4.2", "@uppy/xhr-upload": "^3.4.0", + "ai": "^4.0.11", "@y-sweet/react": "^0.6.3", "docx": "^9.0.2", "react": "^18.3.1", diff --git a/packages/ariakit/src/index.tsx b/packages/ariakit/src/index.tsx index cd7b217a6..88cd1d66d 100644 --- a/packages/ariakit/src/index.tsx +++ b/packages/ariakit/src/index.tsx @@ -47,7 +47,7 @@ import { ToolbarSelect } from "./toolbar/ToolbarSelect.js"; import "./style.css"; export const components: Components = { - FormattingToolbar: { + Toolbar: { Root: Toolbar, Button: ToolbarButton, Select: ToolbarSelect, @@ -65,10 +65,6 @@ export const components: Components = { EmptyItem: GridSuggestionMenuEmptyItem, Loader: GridSuggestionMenuLoader, }, - LinkToolbar: { - Root: Toolbar, - Button: ToolbarButton, - }, SideMenu: { Root: SideMenu, Button: SideMenuButton, diff --git a/packages/ariakit/src/input/TextInput.tsx b/packages/ariakit/src/input/TextInput.tsx index 9da81c8f1..233ed74f4 100644 --- a/packages/ariakit/src/input/TextInput.tsx +++ b/packages/ariakit/src/input/TextInput.tsx @@ -15,13 +15,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -33,15 +36,21 @@ export const TextInput = forwardRef<
{icon}
diff --git a/packages/ariakit/src/style.css b/packages/ariakit/src/style.css index eb0544313..2a46c697a 100644 --- a/packages/ariakit/src/style.css +++ b/packages/ariakit/src/style.css @@ -74,14 +74,31 @@ flex: 1; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-title { + font-size: 0.875rem; +} + .bn-ak-suggestion-menu-item-subtitle { font-size: 0.7rem; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-subtitle { + display: none; +} + .bn-ak-suggestion-menu-item-section[data-position="left"] { + align-items: center; + display: flex; + justify-content: center; + padding: 8px; } +.bn-suggestion-menu-item-small + .bn-ak-suggestion-menu-item-section[data-position="left"] { + padding: 0; +} + .bn-ak-suggestion-menu-item-section[data-position="right"] { --border: rgb(0 0 0/13%); --highlight: rgb(255 255 255/20%); diff --git a/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx index 8acf330c3..a44ce0318 100644 --- a/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx @@ -19,7 +19,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { @@ -34,6 +34,7 @@ export const SuggestionMenuItem = forwardRef< className={mergeCSSClasses("bn-ak-menu-item", className || "")} ref={mergeRefs([ref, itemRef])} id={id} + onMouseDown={(event) => event.preventDefault()} onClick={onClick} role="option" aria-selected={isSelected || undefined}> diff --git a/packages/ariakit/src/toolbar/Toolbar.tsx b/packages/ariakit/src/toolbar/Toolbar.tsx index 20b588b4e..6afa56131 100644 --- a/packages/ariakit/src/toolbar/Toolbar.tsx +++ b/packages/ariakit/src/toolbar/Toolbar.tsx @@ -4,8 +4,7 @@ import { assertEmpty, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { diff --git a/packages/ariakit/src/toolbar/ToolbarButton.tsx b/packages/ariakit/src/toolbar/ToolbarButton.tsx index f19b2f9ca..a2e273ab3 100644 --- a/packages/ariakit/src/toolbar/ToolbarButton.tsx +++ b/packages/ariakit/src/toolbar/ToolbarButton.tsx @@ -9,8 +9,7 @@ import { assertEmpty, isSafari, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Toolbar"]["Button"]; /** * Helper for basic buttons that show in the formatting toolbar. @@ -34,45 +33,49 @@ export const ToolbarButton = forwardRef( // assertEmpty in this case is only used at typescript level, not runtime level assertEmpty(rest, false); - return ( - - { - if (isSafari()) { - (e.currentTarget as HTMLButtonElement).focus(); - } - }} - onClick={onClick} - aria-pressed={isSelected} - data-selected={isSelected ? "true" : undefined} - data-test={ - props.mainTooltip.slice(0, 1).toLowerCase() + - props.mainTooltip.replace(/\s+/g, "").slice(1) - } - // size={"xs"} - disabled={isDisabled || false} - ref={ref} - {...rest}> - {icon} - {children} - + const Button = ( + { + if (isSafari()) { + (e.currentTarget as HTMLButtonElement).focus(); } - /> - - {mainTooltip} - {secondaryTooltip && {secondaryTooltip}} - - + }} + onClick={onClick} + aria-pressed={isSelected} + data-selected={isSelected ? "true" : undefined} + data-test={ + mainTooltip && + mainTooltip.slice(0, 1).toLowerCase() + + mainTooltip.replace(/\s+/g, "").slice(1) + } + // size={"xs"} + disabled={isDisabled || false} + ref={ref} + {...rest}> + {icon} + {children} + ); + + if (mainTooltip) { + return ( + + + + {mainTooltip} + {secondaryTooltip && {secondaryTooltip}} + + + ); + } + + return Button; } ); diff --git a/packages/ariakit/src/toolbar/ToolbarSelect.tsx b/packages/ariakit/src/toolbar/ToolbarSelect.tsx index 83d0cf8bd..101bfcf02 100644 --- a/packages/ariakit/src/toolbar/ToolbarSelect.tsx +++ b/packages/ariakit/src/toolbar/ToolbarSelect.tsx @@ -14,7 +14,7 @@ import { forwardRef } from "react"; export const ToolbarSelect = forwardRef< HTMLDivElement, - ComponentProps["FormattingToolbar"]["Select"] + ComponentProps["Toolbar"]["Select"] >((props, ref) => { const { className, items, isDisabled, ...rest } = props; diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts index 63b0995a8..627a97da5 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts @@ -1,6 +1,7 @@ import { Fragment, NodeType, Node as PMNode, Slice } from "prosemirror-model"; import { EditorState } from "prosemirror-state"; +import { Transaction } from "prosemirror-state"; import { ReplaceStep } from "prosemirror-transform"; import { Block, PartialBlock } from "../../../../blocks/defaultBlocks.js"; import { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; @@ -23,6 +24,84 @@ import { import { nodeToBlock } from "../../../nodeConversions/nodeToBlock.js"; import { getNodeById } from "../../../nodeUtil.js"; +function updateBlockTr< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + tr: Transaction, + posBeforeBlock: number, + block: PartialBlock +) { + const blockInfo = getBlockInfoFromResolvedPos(tr.doc.resolve(posBeforeBlock)); + + // Adds blockGroup node with child blocks if necessary. + + const oldNodeType = editor.pmSchema.nodes[blockInfo.blockNoteType]; + const newNodeType = + editor.pmSchema.nodes[block.type || blockInfo.blockNoteType]; + const newBnBlockNodeType = newNodeType.isInGroup("bnBlock") + ? newNodeType + : editor.pmSchema.nodes["blockContainer"]; + + if (blockInfo.isBlockContainer && newNodeType.isInGroup("blockContent")) { + tr = updateChildren(block, tr, editor, blockInfo); + // The code below determines the new content of the block. + // or "keep" to keep as-is + tr = updateBlockContentNode( + block, + tr, + editor, + oldNodeType, + newNodeType, + blockInfo + ); + } else if (!blockInfo.isBlockContainer && newNodeType.isInGroup("bnBlock")) { + tr = updateChildren(block, tr, editor, blockInfo); + // old node was a bnBlock type (like column or columnList) and new block as well + // No op, we just update the bnBlock below (at end of function) and have already updated the children + } else { + // switching from blockContainer to non-blockContainer or v.v. + // currently breaking for column slash menu items converting empty block + // to column. + + // currently, we calculate the new node and replace the entire node with the desired new node. + // for this, we do a nodeToBlock on the existing block to get the children. + // it would be cleaner to use a ReplaceAroundStep, but this is a bit simpler and it's quite an edge case + const existingBlock = nodeToBlock( + blockInfo.bnBlock.node, + editor.schema.blockSchema, + editor.schema.inlineContentSchema, + editor.schema.styleSchema, + editor.blockCache + ); + tr = tr.replaceWith( + blockInfo.bnBlock.beforePos, + blockInfo.bnBlock.afterPos, + blockToNode( + { + children: existingBlock.children, // if no children are passed in, use existing children + ...block, + }, + editor.pmSchema, + editor.schema.styleSchema + ) + ); + + return tr; + } + + // Adds all provided props as attributes to the parent blockContainer node too, and also preserves existing + // attributes. + tr = tr.setNodeMarkup(blockInfo.bnBlock.beforePos, newBnBlockNodeType, { + ...blockInfo.bnBlock.node.attrs, + ...block.props, + }); + return tr; +} + +// for compatibility with tiptap. TODO: remove as we want to remove dependency on tiptap command interface export const updateBlockCommand = < BSchema extends BlockSchema, @@ -40,76 +119,9 @@ export const updateBlockCommand = state: EditorState; dispatch: ((args?: any) => any) | undefined; }) => { - const blockInfo = getBlockInfoFromResolvedPos( - state.doc.resolve(posBeforeBlock) - ); - if (dispatch) { - // Adds blockGroup node with child blocks if necessary. - - const oldNodeType = state.schema.nodes[blockInfo.blockNoteType]; - const newNodeType = - state.schema.nodes[block.type || blockInfo.blockNoteType]; - const newBnBlockNodeType = newNodeType.isInGroup("bnBlock") - ? newNodeType - : state.schema.nodes["blockContainer"]; - - if (blockInfo.isBlockContainer && newNodeType.isInGroup("blockContent")) { - updateChildren(block, state, editor, blockInfo); - // The code below determines the new content of the block. - // or "keep" to keep as-is - updateBlockContentNode( - block, - state, - editor, - oldNodeType, - newNodeType, - blockInfo - ); - } else if ( - !blockInfo.isBlockContainer && - newNodeType.isInGroup("bnBlock") - ) { - updateChildren(block, state, editor, blockInfo); - // old node was a bnBlock type (like column or columnList) and new block as well - // No op, we just update the bnBlock below (at end of function) and have already updated the children - } else { - // switching from blockContainer to non-blockContainer or v.v. - // currently breaking for column slash menu items converting empty block - // to column. - - // currently, we calculate the new node and replace the entire node with the desired new node. - // for this, we do a nodeToBlock on the existing block to get the children. - // it would be cleaner to use a ReplaceAroundStep, but this is a bit simpler and it's quite an edge case - const existingBlock = nodeToBlock( - blockInfo.bnBlock.node, - editor.schema.blockSchema, - editor.schema.inlineContentSchema, - editor.schema.styleSchema, - editor.blockCache - ); - state.tr.replaceWith( - blockInfo.bnBlock.beforePos, - blockInfo.bnBlock.afterPos, - blockToNode( - { - children: existingBlock.children, // if no children are passed in, use existing children - ...block, - }, - state.schema, - editor.schema.styleSchema - ) - ); - - return true; - } - - // Adds all provided props as attributes to the parent blockContainer node too, and also preserves existing - // attributes. - state.tr.setNodeMarkup(blockInfo.bnBlock.beforePos, newBnBlockNodeType, { - ...blockInfo.bnBlock.node.attrs, - ...block.props, - }); + updateBlockTr(editor, state.tr, posBeforeBlock, block); + dispatch(state.tr); } return true; @@ -121,7 +133,7 @@ function updateBlockContentNode< S extends StyleSchema >( block: PartialBlock, - state: EditorState, + tr: Transaction, editor: BlockNoteEditor, oldNodeType: NodeType, newNodeType: NodeType, @@ -140,7 +152,7 @@ function updateBlockContentNode< // Adds a single text node with no marks to the content. content = inlineContentToNodes( [block.content], - state.schema, + editor.pmSchema, editor.schema.styleSchema ); } else if (Array.isArray(block.content)) { @@ -148,13 +160,13 @@ function updateBlockContentNode< // for each InlineContent object. content = inlineContentToNodes( block.content, - state.schema, + editor.pmSchema, editor.schema.styleSchema ); } else if (block.content.type === "tableContent") { content = tableContentToNodes( block.content, - state.schema, + editor.pmSchema, editor.schema.styleSchema ); } else { @@ -184,9 +196,9 @@ function updateBlockContentNode< // content is being replaced or not. if (content === "keep") { // use setNodeMarkup to only update the type and attributes - state.tr.setNodeMarkup( + tr = tr.setNodeMarkup( blockInfo.blockContent.beforePos, - block.type === undefined ? undefined : state.schema.nodes[block.type], + block.type === undefined ? undefined : editor.pmSchema.nodes[block.type], { ...blockInfo.blockContent.node.attrs, ...block.props, @@ -196,7 +208,7 @@ function updateBlockContentNode< // use replaceWith to replace the content and the block itself // also reset the selection since replacing the block content // sets it to the next block. - state.tr.replaceWith( + tr = tr.replaceWith( blockInfo.blockContent.beforePos, blockInfo.blockContent.afterPos, newNodeType.createChecked( @@ -208,6 +220,7 @@ function updateBlockContentNode< ) ); } + return tr; } function updateChildren< @@ -216,13 +229,13 @@ function updateChildren< S extends StyleSchema >( block: PartialBlock, - state: EditorState, + tr: Transaction, editor: BlockNoteEditor, blockInfo: BlockInfo ) { if (block.children !== undefined) { const childNodes = block.children.map((child) => { - return blockToNode(child, state.schema, editor.schema.styleSchema); + return blockToNode(child, editor.pmSchema, editor.schema.styleSchema); }); // Checks if a blockGroup node already exists. @@ -230,7 +243,7 @@ function updateChildren< // Replaces all child nodes in the existing blockGroup with the ones created earlier. // use a replacestep to avoid the fitting algorithm - state.tr.step( + tr = tr.step( new ReplaceStep( blockInfo.childContainer.beforePos + 1, blockInfo.childContainer.afterPos - 1, @@ -242,12 +255,13 @@ function updateChildren< throw new Error("impossible"); } // Inserts a new blockGroup containing the child nodes created earlier. - state.tr.insert( + tr = tr.insert( blockInfo.blockContent.afterPos, - state.schema.nodes["blockGroup"].createChecked({}, childNodes) + editor.pmSchema.nodes["blockGroup"].createChecked({}, childNodes) ); } } + return tr; } export function updateBlock< @@ -260,6 +274,7 @@ export function updateBlock< update: PartialBlock ): Block { const ttEditor = editor._tiptapEditor; + let tr = ttEditor.state.tr; const id = typeof blockToUpdate === "string" ? blockToUpdate : blockToUpdate.id; @@ -269,16 +284,11 @@ export function updateBlock< throw new Error(`Block with ID ${id} not found`); } - ttEditor.commands.command(({ state, dispatch }) => { - updateBlockCommand( - editor, - posInfo.posBeforeNode, - update - )({ state, dispatch }); - return true; - }); + tr = updateBlockTr(editor, tr, posInfo.posBeforeNode, update); + + editor.dispatch(tr); - const blockContainerNode = ttEditor.state.doc + const blockContainerNode = tr.doc .resolve(posInfo.posBeforeNode + 1) // TODO: clean? .node(); diff --git a/packages/core/src/api/getBlockInfoFromPos.ts b/packages/core/src/api/getBlockInfoFromPos.ts index 525773a33..8e812a64d 100644 --- a/packages/core/src/api/getBlockInfoFromPos.ts +++ b/packages/core/src/api/getBlockInfoFromPos.ts @@ -126,7 +126,7 @@ export function getBlockInfoWithManualOffset( ): BlockInfo { if (!node.type.isInGroup("bnBlock")) { throw new Error( - `Attempted to get bnBlock node at position but found node of different type ${node.type}` + `Attempted to get bnBlock node at position but found node of different type ${node.type.name}` ); } diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json new file mode 100644 index 000000000..213c4c088 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json new file mode 100644 index 000000000..97c49ed9e --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json @@ -0,0 +1,89 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0a50a9285 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json @@ -0,0 +1,153 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json new file mode 100644 index 000000000..29fa8a873 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json @@ -0,0 +1,22 @@ +{ + "blocks": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt new file mode 100644 index 000000000..7f79fb6b6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt @@ -0,0 +1,276 @@ +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt new file mode 100644 index 000000000..f7cccbaf9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt @@ -0,0 +1,276 @@ +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json new file mode 100644 index 000000000..f94d3f294 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json @@ -0,0 +1,67 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json new file mode 100644 index 000000000..0bfa9e865 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json @@ -0,0 +1,40 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json new file mode 100644 index 000000000..a1cc58dc2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json @@ -0,0 +1,81 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "block": { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json new file mode 100644 index 000000000..b0510276a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "ding 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested ", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json new file mode 100644 index 000000000..6c21f8936 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json @@ -0,0 +1,28 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json new file mode 100644 index 000000000..d4b6a6d9f --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json new file mode 100644 index 000000000..ecb769a6b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json new file mode 100644 index 000000000..ecb769a6b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json new file mode 100644 index 000000000..1369a335a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json new file mode 100644 index 000000000..f8f6265c9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json @@ -0,0 +1,26 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json new file mode 100644 index 000000000..5386baa8b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Heading 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json new file mode 100644 index 000000000..439c3f373 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2!$]", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0b3f6b2b2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json new file mode 100644 index 000000000..3d321c032 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json @@ -0,0 +1,80 @@ +[ + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + "children": [] + }, + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + "children": [] + } + ] + }, + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [], + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt new file mode 100644 index 000000000..9a16f7c7d --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!H!$]eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!He!$]ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Hea!$]ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Head!$]ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headi!$]ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headin!$]g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading!$] 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading !$]1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H!$]eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He!$]ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea!$]ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head!$]ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi!$]ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin!$]g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading!$] 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading !$]2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2!$]","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B!$]old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo!$]ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol!$]d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold!$]","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I!$]talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It!$]alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita!$]lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital!$]ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali!$]c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic!$]","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R!$]egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re!$]gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg!$]ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu!$]lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul!$]ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula!$]r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular!$]","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$]","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt new file mode 100644 index 000000000..4bcabfbf6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1[$!","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2[$!","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B[$!old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo[$!ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol[$!d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold[$!","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I[$!talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It[$!alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita[$!lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital[$!ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali[$!c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic[$!","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R[$!egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re[$!gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg[$!ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu[$!lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul[$!ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula[$!r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular[$!","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$!","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell[$!","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json new file mode 100644 index 000000000..0474de6ac --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json @@ -0,0 +1,53 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json new file mode 100644 index 000000000..79fade4aa --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json new file mode 100644 index 000000000..7caba1239 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph!$]", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json new file mode 100644 index 000000000..96184b9f0 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Hea[$!ding 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested !$]Paragraph 1", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json new file mode 100644 index 000000000..d87036d63 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold[$!", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic!$]", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json new file mode 100644 index 000000000..c45b946b8 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json @@ -0,0 +1,69 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json new file mode 100644 index 000000000..697a1f7d9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json @@ -0,0 +1,71 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null, + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json new file mode 100644 index 000000000..326ad8302 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json @@ -0,0 +1,55 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!Table Cell!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json new file mode 100644 index 000000000..4c7ea0de6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json @@ -0,0 +1,71 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null, + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json new file mode 100644 index 000000000..dc9eb6593 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic[$!", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/blockToNode.ts b/packages/core/src/api/nodeConversions/blockToNode.ts index cd5be3c53..166fe3478 100644 --- a/packages/core/src/api/nodeConversions/blockToNode.ts +++ b/packages/core/src/api/nodeConversions/blockToNode.ts @@ -29,7 +29,7 @@ function styledTextToNodes( ): Node[] { const marks: Mark[] = []; - for (const [style, value] of Object.entries(styledText.styles)) { + for (const [style, value] of Object.entries(styledText.styles || {})) { const config = styleSchema[style]; if (!config) { throw new Error(`style ${style} not found in styleSchema`); diff --git a/packages/core/src/api/nodeConversions/nodeToBlock.ts b/packages/core/src/api/nodeConversions/nodeToBlock.ts index 73198c192..f7362c382 100644 --- a/packages/core/src/api/nodeConversions/nodeToBlock.ts +++ b/packages/core/src/api/nodeConversions/nodeToBlock.ts @@ -1,4 +1,4 @@ -import { Mark, Node } from "@tiptap/pm/model"; +import { Mark, Node, Slice } from "@tiptap/pm/model"; import UniqueID from "../../extensions/UniqueID/UniqueID.js"; import type { @@ -12,8 +12,14 @@ import type { Styles, TableContent, } from "../../schema/index.js"; -import { getBlockInfoWithManualOffset } from "../getBlockInfoFromPos.js"; +import { + getBlockInfoWithManualOffset, + getNearestBlockPos, +} from "../getBlockInfoFromPos.js"; +import { EditorState, Transaction } from "prosemirror-state"; +import { ReplaceAroundStep, ReplaceStep } from "prosemirror-transform"; +import { getBlockInfo } from "../../api/getBlockInfoFromPos.js"; import type { Block } from "../../blocks/defaultBlocks.js"; import { isLinkInlineContent, @@ -50,11 +56,13 @@ export function contentNodeToTableContent< rowNode.content.forEach((cellNode) => { row.cells.push( - contentNodeToInlineContent( - cellNode.firstChild!, - inlineContentSchema, - styleSchema - ) + cellNode.firstChild + ? contentNodeToInlineContent( + cellNode.firstChild, + inlineContentSchema, + styleSchema + ) + : [] ); }); @@ -413,3 +421,289 @@ export function nodeToBlock< return block; } + +export type SlicedBlock< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +> = { + block: Block & { + children: SlicedBlock[]; + }; + contentCutAtStart: boolean; + contentCutAtEnd: boolean; +}; + +export function selectionToInsertionEnd(tr: Transaction, startLen: number) { + const last = tr.steps.length - 1; + + if (last < startLen) { + return; + } + + const step = tr.steps[last]; + + if (!(step instanceof ReplaceStep || step instanceof ReplaceAroundStep)) { + return; + } + + const map = tr.mapping.maps[last]; + let end = 0; + + map.forEach((_from, _to, _newFrom, newTo) => { + if (end === 0) { + end = newTo; + } + }); + + return end; +} + +export function withSelectionMarkers< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + state: EditorState, + from: number, + to: number, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + if (from >= to) { + throw new Error("from must be less than to"); + } + let tr = state.tr.insertText("!$]", to); + let newEnd = selectionToInsertionEnd(tr, tr.steps.length - 1)!; + + tr = tr.insertText("[$!", from); + + newEnd = tr.mapping.maps[tr.mapping.maps.length - 1].map(newEnd); + + if (!tr.docChanged || tr.steps.length !== 2) { + throw new Error( + "tr.docChanged is false or insertText was not applied. Was a valid textselection passed?" + ); + } + + return getBlocksBetween( + from, + newEnd, + tr.doc, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); +} + +/** + * Returns all blocks between two positions in a document, but without automatically including parent blocks + */ +function getBlocksBetween< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + start: number, + end: number, + doc: Node, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + const startPosInfo = getNearestBlockPos(doc, start); + const endPosInfo = getNearestBlockPos(doc, end); + const startNode = getBlockInfo(startPosInfo); + const endNode = getBlockInfo(endPosInfo); + + const slice = doc.slice( + startNode.bnBlock.beforePos, + endNode.bnBlock.afterPos, + true + ); + + const bnSelection = prosemirrorSliceToSlicedBlocks( + slice, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); + + // we don't care about the slice metadata, because our slice is based on complete blocks, the + return withoutSliceMetadata(bnSelection.blocks); +} + +export function withoutSliceMetadata< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>(blocks: SlicedBlock[]): Block[] { + return blocks.map((block) => { + return { + ...block.block, + children: withoutSliceMetadata(block.block.children), + }; + }); +} + +/** + * + * Parse a Prosemirror Slice into a BlockNote selection. The prosemirror schema looks like this: + * + * + * (main content of block) + * + * (only if blocks has children) + * (child block) + * + * + * (child block 2) + * + * + * + * + * + * + * Examples, + * + * for slice: + * + * {"content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"1","textColor":"yellow","backgroundColor":"blue"},"content":[{"type":"heading","attrs":{"textAlignment":"right","level":2},"content":[{"type":"text","marks":[{"type":"bold"},{"type":"underline"}],"text":"ding "},{"type":"text","marks":[{"type":"italic"},{"type":"strike"}],"text":"2"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"2","textColor":"default","backgroundColor":"red"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Par"}]}]}]}]}]}],"openStart":3,"openEnd":5} + * + * should return: + * + * [ + * { + * block: { + * nodeToBlock(first blockContainer node), + * children: [ + * { + * block: nodeToBlock(second blockContainer node), + * contentCutAtEnd: true, + * childrenCutAtEnd: false, + * }, + * ], + * }, + * contentCutAtStart: true, + * contentCutAtEnd: false, + * childrenCutAtEnd: true, + * }, + * ] + */ +export function prosemirrorSliceToSlicedBlocks< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + slice: Slice, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +): { + blocks: SlicedBlock[]; +} { + // console.log(JSON.stringify(slice.toJSON())); + function processNode( + node: Node, + openStart: number, + openEnd: number + ): SlicedBlock[] { + if (node.type.name !== "blockGroup") { + throw new Error("unexpected"); + } + const blocks: SlicedBlock[] = []; + + node.forEach((blockContainer, _offset, index) => { + if (blockContainer.type.name !== "blockContainer") { + throw new Error("unexpected"); + } + if (blockContainer.childCount === 0) { + return; + } + if (blockContainer.childCount === 0 || blockContainer.childCount > 2) { + throw new Error( + "unexpected, blockContainer.childCount: " + blockContainer.childCount + ); + } + + const isFirstBlock = index === 0; + const isLastBlock = index === node.childCount - 1; + + if (blockContainer.firstChild!.type.name === "blockGroup") { + // this is the parent where a selection starts within one of its children, + // e.g.: + // A + // ├── B + // selection starts within B, then this blockContainer is A, but we don't care about A + // so let's descend into B and continue processing + if (!isFirstBlock) { + throw new Error("unexpected"); + } + blocks.push( + ...processNode( + blockContainer.firstChild!, + Math.max(0, openStart - 1), + isLastBlock ? Math.max(0, openEnd - 1) : 0 + ) + ); + return; + } + + const block = nodeToBlock( + blockContainer, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); + const childGroup = + blockContainer.childCount > 1 ? blockContainer.child(1) : undefined; + + let childBlocks: SlicedBlock[] = []; + if (childGroup) { + childBlocks = processNode( + childGroup, + 0, // TODO: can this be anything other than 0? + isLastBlock ? Math.max(0, openEnd - 1) : 0 + ); + } + + blocks.push({ + block: { + ...(block as any), + children: childBlocks, + }, + contentCutAtStart: openStart > 1 && isFirstBlock, + contentCutAtEnd: !!(openEnd > 1 && isLastBlock && !childGroup), + }); + }); + + return blocks; + } + + if (slice.content.childCount === 0) { + return { + blocks: [], + }; + } + + if (slice.content.childCount !== 1) { + throw new Error( + "slice must be a single block, did you forget includeParents=true?" + ); + } + + return { + blocks: processNode( + slice.content.firstChild!, + Math.max(slice.openStart - 1, 0), + Math.max(slice.openEnd - 1, 0) + ), + }; +} diff --git a/packages/core/src/api/nodeConversions/selectionMarkers.test.ts b/packages/core/src/api/nodeConversions/selectionMarkers.test.ts new file mode 100644 index 000000000..c3b74d647 --- /dev/null +++ b/packages/core/src/api/nodeConversions/selectionMarkers.test.ts @@ -0,0 +1,349 @@ +import { Node } from "prosemirror-model"; +import { Selection, TextSelection } from "prosemirror-state"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; + +import { PartialBlock } from "../../blocks/defaultBlocks.js"; + +// These tests are meant to test the copying of user selections in the editor. +// The test cases used for the other HTML conversion tests are not suitable here +// as they are represented in the BlockNote API, whereas here we want to test +// ProseMirror/TipTap selections directly. +describe("Test ProseMirror selection HTML conversion", () => { + const initialContent: PartialBlock[] = [ + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 1", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 2", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: [ + { + type: "text", + text: "Bold", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "Italic", + styles: { + italic: true, + }, + }, + { + type: "text", + text: "Regular", + styles: {}, + }, + ], + children: [ + { + type: "image", + props: { + url: "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + }, + children: [ + { + type: "paragraph", + content: "Nested Paragraph", + }, + ], + }, + ], + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["Table Cell", "Table Cell"], + }, + { + cells: ["Table Cell", "Table Cell"], + }, + ], + }, + // Not needed as selections starting in table cells will get snapped to + // the table boundaries. + // children: [ + // { + // type: "table", + // content: { + // type: "tableContent", + // rows: [ + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // ], + // }, + // }, + // ], + }, + ]; + + let editor: BlockNoteEditor; + + const div = document.createElement("div"); + + beforeAll(async () => { + (window as any).__TEST_OPTIONS = (window as any).__TEST_OPTIONS || {}; + editor = BlockNoteEditor.create({ initialContent }); + editor.mount(div); + }); + + afterAll(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + // Sets the editor selection to the given start and end positions, then + // exports the selected content to HTML and compares it to a snapshot. + function testSelection(testName: string, startPos: number, endPos: number) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, startPos, endPos) + ) + ); + + // const slice = editor._tiptapEditor.state.selection.content(); + + const blockNoteSelection = editor.getSelectionWithMarkers(); + + expect( + JSON.stringify(blockNoteSelection, undefined, 2) + ).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/${testName}.json` + ); + } + + const testCases: { testName: string; startPos: number; endPos: number }[] = [ + // Selection spans all of first heading's children. + { + testName: "multipleChildren", + startPos: 16, + endPos: 78, + }, + // Selection spans from start of first heading to end of its first child. + { + testName: "childToParent", + startPos: 3, + endPos: 34, + }, + // Selection spans from middle of first heading to the middle of its first + // child. + { + testName: "partialChildToParent", + startPos: 6, + endPos: 23, + }, + // Selection spans from start of first heading's first child to end of + // second heading's content (does not include second heading's children). + { + testName: "childrenToNextParent", + startPos: 16, + endPos: 93, + }, + // Selection spans from start of first heading's first child to end of + // second heading's last child. + { + testName: "childrenToNextParentsChildren", + startPos: 16, + endPos: 159, + }, + // Selection spans "Regular" text inside third heading. + { + testName: "unstyledText", + startPos: 175, + endPos: 182, + }, + // Selection spans "Italic" text inside third heading. + { + testName: "styledText", + startPos: 169, + endPos: 175, + }, + // Selection spans third heading's content (does not include third heading's + // children). + { + testName: "multipleStyledText", + startPos: 165, + endPos: 182, + }, + // Selection spans the image block content. + { + testName: "image", + startPos: 185, + endPos: 186, + }, + // Selection spans from start of third heading to end of it's last + // descendant. + { + testName: "nestedImage", + startPos: 165, + endPos: 205, + }, + // Selection spans text in first cell of the table. + { + testName: "tableCellText", + startPos: 216, + endPos: 226, + }, + // Selection spans first cell of the table. + { + testName: "tableCell", + startPos: 215, + endPos: 227, + }, + // Selection spans first row of the table. + { + testName: "tableRow", + startPos: 229, + endPos: 241, + }, + // Selection spans all cells of the table. + { + testName: "tableAllCells", + startPos: 259, + endPos: 271, + }, + ]; + // const testCase = testCases.find((testCase) => testCase.testName === "image"); + // it.only(testCase.testName, () => { + // testSelection(testCase.testName, testCase.startPos, testCase.endPos); + // }); + + for (const testCase of testCases) { + it(testCase.testName, () => { + testSelection(testCase.testName, testCase.startPos, testCase.endPos); + }); + } + + it("move end", () => { + let ret = ""; + + loopTextSelections(editor._tiptapEditor.state.doc, "end", (selection) => { + if (selection.empty) { + return; + } + editor.dispatch(editor._tiptapEditor.state.tr.setSelection(selection)); + + const blockNoteSelection = editor.getSelectionWithMarkers(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + }); + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/move_end.txt` + ); + }); + + it("move start", () => { + let ret = ""; + + loopTextSelections(editor._tiptapEditor.state.doc, "start", (selection) => { + if (selection.empty) { + return; + } + editor.dispatch(editor._tiptapEditor.state.tr.setSelection(selection)); + + const blockNoteSelection = editor.getSelectionWithMarkers(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + }); + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/move_start.txt` + ); + }); +}); + +function loopTextSelections( + doc: Node, + move: "start" | "end", + cb: (selection: Selection) => void +) { + const size = doc.content.size; + + for (let i = 0; i < size; i++) { + const selection = TextSelection.between( + move === "start" ? doc.resolve(i) : doc.resolve(0), + move === "start" ? doc.resolve(size - 1) : doc.resolve(i) + ); + if ( + (move === "start" && selection.from !== i) || + (move === "end" && selection.to !== i) + ) { + // The TextSelection.between has moved the position to a valid text position. + // In this case we just skip it. + // (we either have seen this text selection already or it's coming up as we iterate further) + continue; + } + cb(selection); + } +} +/** + * + * Insert $#$ markers around the selection + * + * respond with regular update / remove add blocks + * + * just apply updates + * (possibly: check if updates only affect selection) + * + * + * post partial "slice" blocks that are selected + * respond with similar slice + */ diff --git a/packages/core/src/api/nodeConversions/selections.test.ts b/packages/core/src/api/nodeConversions/selections.test.ts new file mode 100644 index 000000000..f6547ac6e --- /dev/null +++ b/packages/core/src/api/nodeConversions/selections.test.ts @@ -0,0 +1,323 @@ +import { TextSelection } from "prosemirror-state"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor"; + +import { PartialBlock } from "../../blocks/defaultBlocks"; + +// These tests are meant to test the copying of user selections in the editor. +// The test cases used for the other HTML conversion tests are not suitable here +// as they are represented in the BlockNote API, whereas here we want to test +// ProseMirror/TipTap selections directly. +describe("Test ProseMirror selection HTML conversion", () => { + const initialContent: PartialBlock[] = [ + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 1", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 2", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: [ + { + type: "text", + text: "Bold", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "Italic", + styles: { + italic: true, + }, + }, + { + type: "text", + text: "Regular", + styles: {}, + }, + ], + children: [ + { + type: "image", + props: { + url: "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + }, + children: [ + { + type: "paragraph", + content: "Nested Paragraph", + }, + ], + }, + ], + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["Table Cell", "Table Cell"], + }, + { + cells: ["Table Cell", "Table Cell"], + }, + ], + }, + // Not needed as selections starting in table cells will get snapped to + // the table boundaries. + // children: [ + // { + // type: "table", + // content: { + // type: "tableContent", + // rows: [ + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // ], + // }, + // }, + // ], + }, + ]; + + let editor: BlockNoteEditor; + + const div = document.createElement("div"); + + beforeAll(async () => { + (window as any).__TEST_OPTIONS = (window as any).__TEST_OPTIONS || {}; + editor = BlockNoteEditor.create({ initialContent }); + editor.mount(div); + }); + + afterAll(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + // Sets the editor selection to the given start and end positions, then + // exports the selected content to HTML and compares it to a snapshot. + function testSelection(testName: string, startPos: number, endPos: number) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, startPos, endPos) + ) + ); + + // const slice = editor._tiptapEditor.state.selection.content(); + + const blockNoteSelection = editor.getSelection2(); + + expect( + JSON.stringify(blockNoteSelection, undefined, 2) + ).toMatchFileSnapshot(`./__snapshots_selection_json__/${testName}.json`); + } + + const testCases: { testName: string; startPos: number; endPos: number }[] = [ + // Selection spans all of first heading's children. + { + testName: "multipleChildren", + startPos: 16, + endPos: 78, + }, + // Selection spans from start of first heading to end of its first child. + { + testName: "childToParent", + startPos: 3, + endPos: 34, + }, + // Selection spans from middle of first heading to the middle of its first + // child. + { + testName: "partialChildToParent", + startPos: 6, + endPos: 23, + }, + // Selection spans from start of first heading's first child to end of + // second heading's content (does not include second heading's children). + { + testName: "childrenToNextParent", + startPos: 16, + endPos: 93, + }, + // Selection spans from start of first heading's first child to end of + // second heading's last child. + { + testName: "childrenToNextParentsChildren", + startPos: 16, + endPos: 159, + }, + // Selection spans "Regular" text inside third heading. + { + testName: "unstyledText", + startPos: 175, + endPos: 182, + }, + // Selection spans "Italic" text inside third heading. + { + testName: "styledText", + startPos: 169, + endPos: 175, + }, + // Selection spans third heading's content (does not include third heading's + // children). + { + testName: "multipleStyledText", + startPos: 165, + endPos: 182, + }, + // Selection spans the image block content. + { + testName: "image", + startPos: 185, + endPos: 186, + }, + // Selection spans from start of third heading to end of it's last + // descendant. + { + testName: "nestedImage", + startPos: 165, + endPos: 205, + }, + // Selection spans text in first cell of the table. + { + testName: "tableCellText", + startPos: 216, + endPos: 226, + }, + // Selection spans first cell of the table. + { + testName: "tableCell", + startPos: 215, + endPos: 227, + }, + // Selection spans first row of the table. + { + testName: "tableRow", + startPos: 229, + endPos: 241, + }, + // Selection spans all cells of the table. + { + testName: "tableAllCells", + startPos: 259, + endPos: 271, + }, + ]; + + for (const testCase of testCases) { + it(testCase.testName, () => { + testSelection(testCase.testName, testCase.startPos, testCase.endPos); + }); + } + + it("move end", () => { + const size = editor._tiptapEditor.state.doc.content.size; + + let ret = ""; + + for (let i = 0; i < size; i++) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, 0, i) + ) + ); + const blockNoteSelection = editor.getSelection2(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + } + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_json__/move_end.txt` + ); + }); + + it("move start", () => { + const size = editor._tiptapEditor.state.doc.content.size; + + let ret = ""; + + for (let i = 0; i < size; i++) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, i, size - 1) + ) + ); + + const blockNoteSelection = editor.getSelection2(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + } + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_json__/move_start.txt` + ); + }); +}); + +/** + * + * Insert $#$ markers around the selection + * + * respond with regular update / remove add blocks + * + * just apply updates + * (possibly: check if updates only affect selection) + * + * + * post partial "slice" blocks that are selected + * respond with similar slice + */ diff --git a/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts b/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts index ce71bba1b..22d404ade 100644 --- a/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts +++ b/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts @@ -1,22 +1,22 @@ import { InputRule, isTextSelection } from "@tiptap/core"; import { TextSelection } from "@tiptap/pm/state"; -import { createHighlightPlugin, Parser } from "prosemirror-highlight"; +import { Parser, createHighlightPlugin } from "prosemirror-highlight"; import { createParser } from "prosemirror-highlight/shiki"; import { BundledLanguage, + Highlighter, bundledLanguagesInfo, createHighlighter, - Highlighter, } from "shiki"; import { + PropSchema, createBlockSpecFromStronglyTypedTiptapNode, createStronglyTypedTiptapNode, - PropSchema, } from "../../schema/index.js"; import { createDefaultBlockDOMOutputSpec } from "../defaultBlockHelpers.js"; import { - defaultSupportedLanguages, SupportedLanguageConfig, + defaultSupportedLanguages, } from "./defaultSupportedLanguages.js"; interface CodeBlockOptions { @@ -79,7 +79,7 @@ const CodeBlockContent = createStronglyTypedTiptapNode({ .map((className) => className.replace("language-", "")); const [classLanguage] = languages; - language = classLanguage.toLowerCase(); + language = classLanguage?.toLowerCase(); } if (!language) { diff --git a/packages/core/src/blocks/defaultBlockTypeGuards.ts b/packages/core/src/blocks/defaultBlockTypeGuards.ts index 169f9d97e..91a221551 100644 --- a/packages/core/src/blocks/defaultBlockTypeGuards.ts +++ b/packages/core/src/blocks/defaultBlockTypeGuards.ts @@ -1,5 +1,6 @@ import type { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; import { + BlockConfig, BlockFromConfig, BlockSchema, FileBlockConfig, @@ -15,6 +16,22 @@ import { } from "./defaultBlocks.js"; import { defaultProps } from "./defaultProps.js"; +// TODO: check +export function checkBlockTypeInSchema< + Config extends BlockConfig, + I extends InlineContentSchema, + S extends StyleSchema +>( + blockConfig: Config, + editor: BlockNoteEditor +): editor is BlockNoteEditor<{ Type: Config }, I, S> { + return ( + blockConfig.type in editor.schema.blockSchema && + editor.schema.blockSchema[blockConfig.type] === blockConfig + ); +} + +// TODO: can we reuse checkBlockTypeInSchema? export function checkDefaultBlockTypeInSchema< BlockType extends keyof DefaultBlockSchema, I extends InlineContentSchema, diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index efe784e64..4526264a3 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -406,7 +406,6 @@ NESTED BLOCKS position: absolute; font-style: italic; } - /* TODO: should this be here? */ /* TEXT COLORS */ diff --git a/packages/core/src/editor/BlockNoteEditor.test.ts b/packages/core/src/editor/BlockNoteEditor.test.ts index b32e09c12..b265b09b0 100644 --- a/packages/core/src/editor/BlockNoteEditor.test.ts +++ b/packages/core/src/editor/BlockNoteEditor.test.ts @@ -74,3 +74,10 @@ it("adds id attribute when requested", async () => { `"

This is a normal text

And this is a large heading

"` ); }); + +it("updates block", () => { + const editor = BlockNoteEditor.create(); + editor.updateBlock(editor.document[0], { + content: "hello", + }); +}); diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts index f974af072..5eaf155c3 100644 --- a/packages/core/src/editor/BlockNoteEditor.ts +++ b/packages/core/src/editor/BlockNoteEditor.ts @@ -91,7 +91,11 @@ import { Plugin, Transaction } from "@tiptap/pm/state"; import { dropCursor } from "prosemirror-dropcursor"; import { createInternalHTMLSerializer } from "../api/exporters/html/internalHTMLSerializer.js"; import { inlineContentToNodes } from "../api/nodeConversions/blockToNode.js"; -import { nodeToBlock } from "../api/nodeConversions/nodeToBlock.js"; +import { + nodeToBlock, + prosemirrorSliceToSlicedBlocks, + withSelectionMarkers, +} from "../api/nodeConversions/nodeToBlock.js"; import "../style.css"; import { EditorView } from "prosemirror-view"; @@ -771,6 +775,76 @@ export class BlockNoteEditor< setTextCursorPosition(this, targetBlock, placement); } + // TODO: what about node selections? + public getSelectionWithMarkers() { + const start = this._tiptapEditor.state.selection.$from; + const end = this._tiptapEditor.state.selection.$to; + + // if the end is at the end of a node (|

) move it forward so we include all closing tags (

|) + // while (end.parentOffset >= end.parent.nodeSize - 2 && end.depth > 0) { + // end = this._tiptapEditor.state.doc.resolve(end.pos + 1); + // } + + // // if the end is at the start of an empty node (

|) move it backwards so we drop empty start tags (

|) + // while (end.parentOffset === 0 && end.depth > 0) { + // end = this._tiptapEditor.state.doc.resolve(end.pos - 1); + // } + + // // if the start is at the start of a node (

|) move it backwards so we include all open tags (|

) + // while (start.parentOffset === 0 && start.depth > 0) { + // start = this._tiptapEditor.state.doc.resolve(start.pos - 1); + // } + + // // if the start is at the end of a node (|

) move it forwards so we drop all closing tags (|

) + // while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) { + // start = this._tiptapEditor.state.doc.resolve(start.pos + 1); + // } + + return withSelectionMarkers( + this._tiptapEditor.state, + start.pos, + end.pos, + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema + ); + } + + // TODO: fix image node selection + public getSelection2() { + let start = this._tiptapEditor.state.selection.$from; + let end = this._tiptapEditor.state.selection.$to; + + // if the end is at the end of a node (|

) move it forward so we include all closing tags (

|) + while (end.parentOffset >= end.parent.nodeSize - 2 && end.depth > 0) { + end = this._tiptapEditor.state.doc.resolve(end.pos + 1); + } + + // if the end is at the start of an empty node (

|) move it backwards so we drop empty start tags (

|) + while (end.parentOffset === 0 && end.depth > 0) { + end = this._tiptapEditor.state.doc.resolve(end.pos - 1); + } + + // if the start is at the start of a node (

|) move it backwards so we include all open tags (|

) + while (start.parentOffset === 0 && start.depth > 0) { + start = this._tiptapEditor.state.doc.resolve(start.pos - 1); + } + + // if the start is at the end of a node (|

|) move it forwards so we drop all closing tags (|

) + while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) { + start = this._tiptapEditor.state.doc.resolve(start.pos + 1); + } + + // console.log(start.pos, end.pos); + return prosemirrorSliceToSlicedBlocks( + this._tiptapEditor.state.doc.slice(start.pos, end.pos, true), + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema, + this.blockCache + ); + } + /** * Gets a snapshot of the current selection. */ diff --git a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts index f2e11d5ee..25a4b746f 100644 --- a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts +++ b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts @@ -1,7 +1,5 @@ -import type { Dictionary } from "../../i18n/dictionary.js"; - export type DefaultSuggestionItem = { - key: keyof Dictionary["slash_menu"]; + key: string; title: string; onItemClick: () => void; subtext?: string; diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index fb6fbad7e..f16e8b952 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -307,8 +307,9 @@ export function filterSuggestionItems< ({ title, aliases }) => title.toLowerCase().includes(query.toLowerCase()) || (aliases && - aliases.filter((alias) => - alias.toLowerCase().includes(query.toLowerCase()) + aliases.filter( + (alias) => + alias === "" || alias.toLowerCase().includes(query.toLowerCase()) ).length !== 0) ); } diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 7b0115ae4..1b5d2d641 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -55,6 +55,7 @@ export { UnreachableCaseError, assertEmpty } from "./util/typescript.js"; export { locales }; export * from "./api/blockManipulation/commands/updateBlock/updateBlock.js"; +export * from "./util/EventEmitter.js"; // for testing from react (TODO: move): export * from "./api/nodeConversions/blockToNode.js"; export * from "./api/nodeConversions/nodeToBlock.js"; diff --git a/packages/dev-scripts/examples/template-react/vite.config.ts.template.tsx b/packages/dev-scripts/examples/template-react/vite.config.ts.template.tsx index 5def19382..ab87e0e94 100644 --- a/packages/dev-scripts/examples/template-react/vite.config.ts.template.tsx +++ b/packages/dev-scripts/examples/template-react/vite.config.ts.template.tsx @@ -19,18 +19,18 @@ export default defineConfig((conf) => ({ resolve: { alias: conf.command === "build" || - !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + !fs.existsSync(path.resolve(__dirname, "../../../packages/core/src")) ? {} : ({ // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working "@blocknote/core": path.resolve( __dirname, - "../../packages/core/src/" + "../../../packages/core/src/" ), "@blocknote/react": path.resolve( __dirname, - "../../packages/react/src/" + "../../../packages/react/src/" ), } as any), }, diff --git a/packages/mantine/src/form/TextInput.tsx b/packages/mantine/src/form/TextInput.tsx index e741deb46..c4b4a5334 100644 --- a/packages/mantine/src/form/TextInput.tsx +++ b/packages/mantine/src/form/TextInput.tsx @@ -1,6 +1,6 @@ import { TextInput as MantineTextInput } from "@mantine/core"; -import { assertEmpty } from "@blocknote/core"; +import { assertEmpty, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; @@ -12,13 +12,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -27,7 +30,10 @@ export const TextInput = forwardRef< return ( ); }); diff --git a/packages/mantine/src/index.tsx b/packages/mantine/src/index.tsx index 3941d640d..6987daf62 100644 --- a/packages/mantine/src/index.tsx +++ b/packages/mantine/src/index.tsx @@ -56,7 +56,7 @@ export * from "./BlockNoteTheme.js"; export * from "./defaultThemes.js"; export const components: Components = { - FormattingToolbar: { + Toolbar: { Root: Toolbar, Button: ToolbarButton, Select: ToolbarSelect, @@ -74,10 +74,6 @@ export const components: Components = { EmptyItem: GridSuggestionMenuEmptyItem, Loader: GridSuggestionMenuLoader, }, - LinkToolbar: { - Root: Toolbar, - Button: ToolbarButton, - }, SideMenu: { Root: SideMenu, Button: SideMenuButton, diff --git a/packages/mantine/src/style.css b/packages/mantine/src/style.css index 9fe02136f..2d0389392 100644 --- a/packages/mantine/src/style.css +++ b/packages/mantine/src/style.css @@ -118,6 +118,12 @@ height: 32px; } +.bn-mantine .bn-mt-input-large .mantine-TextInput-input { + border: none; + font-size: 14px; + height: 52px; +} + /* Mantine Tooltip component base styles */ .bn-mantine .mantine-Tooltip-tooltip { background-color: transparent; @@ -316,6 +322,12 @@ height: 52px; } +.bn-mantine .bn-suggestion-menu-item-small { + height: fit-content; + /* Made to match with labels */ + padding: calc(var(--mantine-spacing-xs) / 2) var(--mantine-spacing-sm); +} + .bn-mantine .bn-suggestion-menu-item[aria-selected="true"], .bn-mantine .bn-suggestion-menu-item:hover { background-color: var(--bn-colors-hovered-background); @@ -331,6 +343,16 @@ padding: 8px; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-section[data-position="left"] { + background-color: transparent; + padding: 0; +} + +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-section[data-position="left"] svg { + height: 14px; + width: 14px; +} + .bn-mt-suggestion-menu-item-body { align-items: stretch; display: flex; @@ -349,6 +371,10 @@ padding: 0; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-title { + font-size: 12px; +} + .bn-mt-suggestion-menu-item-subtitle { color: var(--bn-colors-menu-text); line-height: 16px; @@ -357,8 +383,13 @@ padding: 0; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-subtitle { + display: none; +} + .bn-mantine .bn-suggestion-menu-label { color: var(--bn-colors-hovered-text); + font-weight: bold; } .bn-mantine .bn-suggestion-menu-loader { diff --git a/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx index c7db27e38..a758c39da 100644 --- a/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx @@ -27,7 +27,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { @@ -44,6 +44,7 @@ export const SuggestionMenuItem = forwardRef< ref={mergeRefs(ref, itemRef)} id={id} role="option" + onMouseDown={(event) => event.preventDefault()} onClick={onClick} aria-selected={isSelected || undefined}> {item.icon && ( diff --git a/packages/mantine/src/toolbar/Toolbar.tsx b/packages/mantine/src/toolbar/Toolbar.tsx index 9ad042e85..a9c2b07d2 100644 --- a/packages/mantine/src/toolbar/Toolbar.tsx +++ b/packages/mantine/src/toolbar/Toolbar.tsx @@ -5,8 +5,7 @@ import { ComponentProps } from "@blocknote/react"; import { mergeRefs, useFocusTrap, useFocusWithin } from "@mantine/hooks"; import { forwardRef } from "react"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { diff --git a/packages/mantine/src/toolbar/ToolbarButton.tsx b/packages/mantine/src/toolbar/ToolbarButton.tsx index bd22f0411..6ba92931d 100644 --- a/packages/mantine/src/toolbar/ToolbarButton.tsx +++ b/packages/mantine/src/toolbar/ToolbarButton.tsx @@ -22,8 +22,7 @@ export const TooltipContent = (props: { ); -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Toolbar"]["Button"]; /** * Helper for basic buttons that show in the formatting toolbar. @@ -51,10 +50,12 @@ export const ToolbarButton = forwardRef( + mainTooltip && ( + + ) }> {/*Creates an ActionIcon instead of a Button if only an icon is provided as content.*/} {children ? ( @@ -69,11 +70,13 @@ export const ToolbarButton = forwardRef( } }} onClick={onClick} + leftSection={icon} aria-pressed={isSelected} data-selected={isSelected || undefined} data-test={ + mainTooltip && mainTooltip.slice(0, 1).toLowerCase() + - mainTooltip.replace(/\s+/g, "").slice(1) + mainTooltip.replace(/\s+/g, "").slice(1) } size={"xs"} disabled={isDisabled || false} @@ -96,8 +99,9 @@ export const ToolbarButton = forwardRef( aria-pressed={isSelected} data-selected={isSelected || undefined} data-test={ + mainTooltip && mainTooltip.slice(0, 1).toLowerCase() + - mainTooltip.replace(/\s+/g, "").slice(1) + mainTooltip.replace(/\s+/g, "").slice(1) } size={30} disabled={isDisabled || false} diff --git a/packages/mantine/src/toolbar/ToolbarSelect.tsx b/packages/mantine/src/toolbar/ToolbarSelect.tsx index 32638ca5a..6e57b178b 100644 --- a/packages/mantine/src/toolbar/ToolbarSelect.tsx +++ b/packages/mantine/src/toolbar/ToolbarSelect.tsx @@ -12,7 +12,7 @@ import { HiChevronDown } from "react-icons/hi"; // TODO: Turn into select? export const ToolbarSelect = forwardRef< HTMLDivElement, - ComponentProps["FormattingToolbar"]["Select"] + ComponentProps["Toolbar"]["Select"] >((props, ref) => { const { className, items, isDisabled, ...rest } = props; diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx index a2334ac94..bfa064fae 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx @@ -107,7 +107,7 @@ export const BasicTextStyleButton =