diff --git a/kreuzberg/_pandoc.py b/kreuzberg/_pandoc.py index bc6e8a6..ea0db13 100644 --- a/kreuzberg/_pandoc.py +++ b/kreuzberg/_pandoc.py @@ -2,7 +2,6 @@ import re import sys -from functools import partial from json import JSONDecodeError, loads from typing import TYPE_CHECKING, Any, Final, Literal, cast @@ -333,14 +332,14 @@ async def process_file_with_pandoc(input_file: str | PathLike[str], *, mime_type _get_pandoc_type_from_mime_type(mime_type) try: - metadata, content = await run_taskgroup( - partial(_handle_extract_metadata, input_file, mime_type=mime_type), - partial(_handle_extract_file, input_file, mime_type=mime_type), - ) + metadata_task = _handle_extract_metadata(input_file, mime_type=mime_type) + content_task = _handle_extract_file(input_file, mime_type=mime_type) + results = await run_taskgroup(metadata_task, content_task) + metadata, content = cast(tuple[Metadata, str], results) return ExtractionResult( - content=normalize_spaces(cast(str, content)), - metadata=cast(Metadata, metadata), + content=normalize_spaces(content), + metadata=metadata, mime_type=MARKDOWN_MIME_TYPE, ) except ExceptionGroup as eg: diff --git a/kreuzberg/_playa.py b/kreuzberg/_playa.py new file mode 100644 index 0000000..bddcda4 --- /dev/null +++ b/kreuzberg/_playa.py @@ -0,0 +1,374 @@ +from __future__ import annotations + +from dataclasses import asdict +from typing import Any, TypedDict, cast + +import playa +from playa.page import Page, PathObject, PathOperator +from playa.pdftypes import ObjRef, PSLiteral + +from kreuzberg._sync import run_taskgroup + + +class DestinationMetadata(TypedDict): + """Metadata for a PDF destination.""" + + page_idx: int | None + """Page index for the destination.""" + display: str | None + """Display mode for the destination.""" + coords: tuple[float | None, ...] + """Coordinates of the destination.""" + + +class ActionMetadata(TypedDict): + """Metadata for a PDF action.""" + + type: str + """Type of action.""" + + destination: DestinationMetadata | None + """Destination reference, if present.""" + + +class MarkedContentMetadata(TypedDict): + """Metadata for marked content sections.""" + + tag: str + """Name of the marked content tag.""" + + properties: dict[str, Any] + """Properties associated with the marked content.""" + + mcid: int | None + """Marked Content Identifier, if present.""" + + +class TextObjectMetadata(TypedDict): + """Metadata for a text object in a PDF.""" + + bbox: tuple[float, float, float, float] + """Bounding box coordinates (left, top, right, bottom).""" + + graphic_state: dict[str, Any] + """The graphic state of the path object.""" + + marked_content: MarkedContentMetadata + """Marked content section information.""" + + +class PathSegmentMetadata(TypedDict): + """Metadata for a path segment.""" + + type: PathOperator + """Type of path segment (move, line, curve, etc.).""" + + points: list[tuple[float, float]] + """List of points defining the path segment.""" + + +class PathObjectMetadata(TypedDict): + """Metadata for a path object in a PDF.""" + + bbox: tuple[float, float, float, float] + """Bounding box coordinates.""" + + graphic_state: dict[str, Any] + """The graphic state of the path object.""" + + segments: list[PathSegmentMetadata] + """List of path segments.""" + + +class XObjectContentMetadata(TypedDict): + """Metadata for content within an XObject.""" + + type: str + """Type of content object.""" + + bbox: tuple[float, float, float, float] + """Bounding box coordinates.""" + + +class XObjectMetadata(TypedDict): + """Metadata for a Form XObject in a PDF.""" + + bbox: tuple[float, float, float, float] + """Bounding box coordinates.""" + + content: list[XObjectContentMetadata] + """List of content objects within the XObject.""" + + +class AnnotationMetadata(TypedDict): + """Metadata for a PDF annotation.""" + + subtype: str + """Annotation subtype (Link, Widget, etc.).""" + + rect: tuple[float, float, float, float] + """Rectangle coordinates defining the annotation's bounds.""" + + properties: dict[str, Any] + """Additional annotation properties.""" + + +class MarkedContentSectionMetadata(TypedDict): + """Metadata for a marked content section.""" + + tag: str + """Name of the marked content tag.""" + + properties: dict[str, Any] + """Properties associated with the marked content.""" + + mcid: int | None + """Marked Content Identifier, if present.""" + + bbox: tuple[float, float, float, float] + """Bounding box coordinates.""" + + +class PageMetadata(TypedDict): + """Detailed metadata for a single PDF page.""" + + index: int + """0-based page number.""" + + page_number: str + """Page label (could be roman numerals, letters, etc).""" + + dimensions: tuple[int, int] + """Page dimensions (width, height) in points.""" + + rotation: int + """Page rotation in degrees.""" + + text_objects: list[TextObjectMetadata] + """List of text objects on the page.""" + + path_objects: list[PathObjectMetadata] + """List of path objects (graphics) on the page.""" + + xobjects: list[XObjectMetadata] + """List of Form XObjects on the page.""" + + annotations: list[AnnotationMetadata] + """List of page annotations.""" + + marked_content: list[MarkedContentSectionMetadata] + """List of marked content sections.""" + + +class OutlineEntryMetadata(TypedDict): + """Metadata for a document outline entry.""" + + title: str | None + """Title of the outline entry.""" + + destination: DestinationMetadata | None + """Destination reference.""" + + action: ActionMetadata | None + """Action to perform when entry is activated.""" + + element: str | None + """Associated structure element reference.""" + + +class StructureElementMetadata(TypedDict): + """Metadata for a logical structure element.""" + + type: str + """Type of structure element.""" + + attributes: str + """Element attributes as string.""" + + children: list[str] + """Names of child elements.""" + + +class DocumentMetadata(TypedDict): + """Complete metadata for a PDF document.""" + + total_pages: int + """Total number of pages in the document.""" + + page_labels: list[str] + """List of all page labels.""" + + outline: list[OutlineEntryMetadata] + """Document outline/bookmarks.""" + + structure: list[StructureElementMetadata] + """Logical structure elements.""" + + pages: list[PageMetadata] + """Detailed metadata for each page.""" + + +def _parse_to_string(value: Any) -> str: + """Parse a PDF object to a string representation. + + Args: + value: The PDF object to parse. + + Returns: + A string representation of the PDF object. + """ + return f"/{value.name}" if isinstance(value, PSLiteral) else str(value) + + +def _normalize_to_dict(value: Any) -> dict[str, Any]: + """Normalize a PDF object to a serializable dictionary. + + Args: + value: The PDF object to normalize. + + Returns: + A dictionary representation of the PDF object. + """ + if not isinstance(value, dict): + return {} + + normalized_items = [(k.lower(), v.resolve() if isinstance(v, ObjRef) else v) for k, v in value.items()] + + ret: dict[str, Any] = {} + for k, v in normalized_items: + if isinstance(v, dict): + ret[k] = _normalize_to_dict(v) + elif isinstance(v, list): + ret[k] = [_normalize_to_dict(item) for item in v] + elif isinstance(v, PSLiteral): + ret[k] = _parse_to_string(v) + else: + ret[k] = v + return ret + + +async def _extract_page_metadata(page: Page) -> PageMetadata: + """Extract detailed metadata from a single PDF page. + + Args: + page: A playa Page object. + + Returns: + PageMetadata containing all extractable information from the page. + """ + text_objects: list[TextObjectMetadata] = [] + path_objects: list[PathObjectMetadata] = [] + xobjects: list[XObjectMetadata] = [] + marked_content: list[MarkedContentSectionMetadata] = [] + + for obj in page: + if obj.object_type == "text": + text_objects.append( + TextObjectMetadata( + bbox=obj.bbox, + graphic_state=_normalize_to_dict(asdict(obj.gstate) if obj.gstate else {}), + marked_content=MarkedContentMetadata( + tag=obj.mcs.tag if obj.mcs else "", + properties=obj.mcs.props if obj.mcs else {}, + mcid=obj.mcs.mcid if obj.mcs and hasattr(obj.mcs, "mcid") else None, + ), + ) + ) + elif obj.object_type == "path": + segments = [ + PathSegmentMetadata(type=seg.operator, points=[(float(x), float(y)) for x, y in seg.points]) + for seg in cast(PathObject, obj).raw_segments + ] + path_objects.append( + PathObjectMetadata( + bbox=obj.bbox, + graphic_state=_normalize_to_dict(asdict(obj.gstate) if obj.gstate else {}), + segments=segments, + ) + ) + elif obj.object_type == "xobject": + xobject_content = [XObjectContentMetadata(type=item.object_type, bbox=item.bbox) for item in obj] + xobjects.append(XObjectMetadata(bbox=obj.bbox, content=xobject_content)) + + if hasattr(obj, "mcs") and obj.mcs is not None and obj.mcs.tag: + marked_content.append( + MarkedContentSectionMetadata( + tag=obj.mcs.tag if obj.mcs else "", + properties=_normalize_to_dict(obj.mcs.props) if obj.mcs else {}, + mcid=obj.mcs.mcid if obj.mcs and hasattr(obj.mcs, "mcid") else None, + bbox=obj.bbox, + ) + ) + + return PageMetadata( + annotations=[ + AnnotationMetadata(subtype=annot.subtype, rect=annot.rect, properties=_normalize_to_dict(annot.props)) + for annot in page.annotations + ], + dimensions=(int(page.width), int(page.height)), + page_number=str(page.label) if page.label is not None else "", + marked_content=marked_content, + index=page.page_idx, + path_objects=path_objects, + rotation=page.rotate, + text_objects=text_objects, + xobjects=xobjects, + ) + + +async def extract_pdf_metadata(pdf_content: bytes) -> DocumentMetadata: + """Extract complete metadata from a PDF document. + + Args: + pdf_content: The raw PDF content. + + Returns: + DocumentMetadata containing all extractable information. + """ + document = playa.parse(pdf_content, max_workers=1, space="screen") + tasks = [_extract_page_metadata(page) for page in document.pages] + pages: list[PageMetadata] = await run_taskgroup(*tasks) + + outline = [ + OutlineEntryMetadata( + title=entry.title, + destination=DestinationMetadata( + page_idx=entry.destination.page_idx, + display=_parse_to_string(entry.destination.display), + coords=entry.destination.coords, + ) + if entry.destination + else None, + action=ActionMetadata( + type=_parse_to_string(entry.action.type), + destination=DestinationMetadata( + page_idx=entry.action.destination.page_idx, + display=_parse_to_string(entry.action.destination.display), + coords=entry.action.destination.coords, + ) + if entry.action.destination + else None, + ) + if entry.action + else None, + element=str(entry.element), + ) + for entry in (document.outline or []) + ] + + structure = [ + StructureElementMetadata( + type=str(getattr(element, "name", "")), + attributes=str(getattr(element, "attributes", "")), + children=[str(getattr(child, "name", "")) for child in (element or [])], + ) + for element in (document.structure or []) + ] + + return DocumentMetadata( + total_pages=len(document.pages), + page_labels=[str(page.label) if page.label is not None else "" for page in document.pages], + outline=outline, + structure=structure, + pages=pages, + ) diff --git a/kreuzberg/_sync.py b/kreuzberg/_sync.py index 8ace17f..12d8edf 100644 --- a/kreuzberg/_sync.py +++ b/kreuzberg/_sync.py @@ -2,13 +2,13 @@ import sys from functools import partial -from typing import TYPE_CHECKING, TypeVar, cast +from typing import TYPE_CHECKING, Any, TypeVar, cast from anyio import create_task_group from anyio.to_thread import run_sync as any_io_run_sync if TYPE_CHECKING: # pragma: no cover - from collections.abc import Callable, Coroutine + from collections.abc import Awaitable, Callable if sys.version_info >= (3, 10): from typing import ParamSpec @@ -34,7 +34,7 @@ async def run_sync(sync_fn: Callable[P, T], *args: P.args, **kwargs: P.kwargs) - return cast(T, await any_io_run_sync(handler, *args, abandon_on_cancel=True)) # pyright: ignore [reportCallIssue] -async def run_taskgroup(*async_tasks: Callable[[], Coroutine[None, None, T]]) -> list[T]: +async def run_taskgroup(*async_tasks: Awaitable[Any]) -> list[Any]: """Run a list of coroutines concurrently. Args: @@ -43,10 +43,10 @@ async def run_taskgroup(*async_tasks: Callable[[], Coroutine[None, None, T]]) -> Returns: The results of the coroutines. """ - results = cast(list[T], [None] * len(async_tasks)) + results: list[Any] = [None] * len(async_tasks) - async def run_task(index: int, task: Callable[[], Coroutine[None, None, T]]) -> None: - results[index] = await task() + async def run_task(index: int, task: Awaitable[T]) -> None: + results[index] = await task async with create_task_group() as tg: for i, t in enumerate(async_tasks): @@ -55,7 +55,7 @@ async def run_task(index: int, task: Callable[[], Coroutine[None, None, T]]) -> return results -async def run_taskgroup_batched(*async_tasks: Callable[[], Coroutine[None, None, T]], batch_size: int) -> list[T]: +async def run_taskgroup_batched(*async_tasks: Awaitable[Any], batch_size: int) -> list[Any]: """Run a list of coroutines concurrently in batches. Args: @@ -65,7 +65,7 @@ async def run_taskgroup_batched(*async_tasks: Callable[[], Coroutine[None, None, Returns: The results of the coroutines. """ - results: list[T] = [] + results: list[Any] = [] for i in range(0, len(async_tasks), batch_size): batch = async_tasks[i : i + batch_size] diff --git a/kreuzberg/_tesseract.py b/kreuzberg/_tesseract.py index d5c2ca2..6e0a541 100644 --- a/kreuzberg/_tesseract.py +++ b/kreuzberg/_tesseract.py @@ -3,7 +3,6 @@ import re import sys from enum import Enum -from functools import partial from os import PathLike from typing import Any, TypeVar, Union @@ -226,9 +225,7 @@ async def batch_process_images( """ await validate_tesseract_version() try: - return await run_taskgroup_batched( - *[partial(process_image_with_tesseract, image, language=language, psm=psm) for image in images], - batch_size=max_processes, - ) + tasks = [process_image_with_tesseract(image, language=language, psm=psm) for image in images] + return await run_taskgroup_batched(*tasks, batch_size=max_processes) except ExceptionGroup as eg: raise ParsingError("Failed to process images with Tesseract", context={"errors": eg.exceptions}) from eg diff --git a/kreuzberg/_xlsx.py b/kreuzberg/_xlsx.py index 3c28884..35037cc 100644 --- a/kreuzberg/_xlsx.py +++ b/kreuzberg/_xlsx.py @@ -2,7 +2,6 @@ import csv import sys -from functools import partial from io import StringIO from typing import TYPE_CHECKING @@ -57,9 +56,8 @@ async def extract_xlsx_file(input_file: Path) -> ExtractionResult: """ try: workbook: CalamineWorkbook = await run_sync(CalamineWorkbook.from_path, str(input_file)) - results = await run_taskgroup( - *[partial(convert_sheet_to_text, workbook, sheet_name) for sheet_name in workbook.sheet_names] - ) + tasks = [convert_sheet_to_text(workbook, sheet_name) for sheet_name in workbook.sheet_names] + results: list[str] = await run_taskgroup(*tasks) return ExtractionResult( content="\n\n".join(results), diff --git a/pyproject.toml b/pyproject.toml index a6ff928..b3e214e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ dependencies = [ "charset-normalizer>=3.4.1", "exceptiongroup>=1.2.2; python_version<'3.11'", "html-to-markdown>=1.2.0", + "playa-pdf", "pypdfium2>=4.30.1", "python-calamine>=0.3.1", "python-pptx>=1.0.2", @@ -135,3 +136,6 @@ disable_error_code = 'import-untyped' implicit_reexport = false show_error_codes = true strict = true + +[tool.uv.sources] +playa-pdf = { git = "https://github.com/dhdaines/playa", rev = "main" } diff --git a/tests/playa_test.py b/tests/playa_test.py new file mode 100644 index 0000000..cae47c5 --- /dev/null +++ b/tests/playa_test.py @@ -0,0 +1,14 @@ +from json import dumps, loads +from pathlib import Path + +import pytest + +from kreuzberg._playa import extract_pdf_metadata + + +@pytest.mark.anyio +async def test_extract_pdf_metadata_test_article(test_article: Path) -> None: + expected_metadata = loads((Path(__file__).parent / "source" / "pdf_metadata.json").read_text()) + content = test_article.read_bytes() + metadata = await extract_pdf_metadata(content) + assert dumps(metadata) == dumps(expected_metadata) diff --git a/tests/source/pdf_metadata.json b/tests/source/pdf_metadata.json new file mode 100644 index 0000000..951d937 --- /dev/null +++ b/tests/source/pdf_metadata.json @@ -0,0 +1 @@ +{"total_pages": 28, "page_labels": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28"], "outline": [{"title": "Bibliography", "destination": {"page_idx": 26, "display": "/XYZ", "coords": [70.9, 757.7, 0]}, "action": null, "element": "None"}], "structure": [], "pages": [{"annotations": [{"subtype": "Link", "rect": [520.2, 689.8, 524.5, 703.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [363.7, 556.9, 368.7, 577.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [486.8, 533.3, 491.8, 547.1], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [491.2, 491.9, 496.2, 512.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [404, 347, 409, 367.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "1", "marked_content": [], "index": 0, "path_objects": [{"bbox": [70.9, 660.6, 184.3, 661.1], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 180.9]]}, {"type": "l", "points": [[184.3, 180.9]]}, {"type": "l", "points": [[184.3, 181.4]]}, {"type": "l", "points": [[70.9, 181.4]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 89.32399999999996, 327.872, 103.32399999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [327.9, 89.32399999999996, 523.074, 103.32399999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 89.32399999999996, 528.0, 103.32399999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 113.524, 145.60599999999997, 127.524], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [417.4, 140.19200000000004, 520.996, 152.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [521.0, 139.41199999999998, 524.5, 146.41199999999998], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 210.992, 523.9999999999998, 222.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.992, 527.5, 222.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 231.69200000000004, 115.004, 243.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [115.0, 231.69200000000004, 433.708, 243.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [434.0, 231.69200000000004, 524.288, 243.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 231.69200000000004, 527.4, 243.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 252.39199999999997, 362.5040000000001, 264.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [362.9, 252.39199999999997, 523.22, 264.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 252.39199999999997, 527.5, 264.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 273.092, 359.62400000000014, 285.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [359.6, 273.092, 364.49600000000004, 285.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [364.5, 272.412, 368.0, 279.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [368.0, 273.092, 414.392, 285.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 296.692, 486.872, 308.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [487.6, 296.012, 491.1, 303.012], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [491.1, 296.692, 524.4119999999999, 308.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 296.692, 527.5, 308.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 317.39199999999994, 322.172, 329.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [322.2, 317.39199999999994, 523.224, 329.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 317.39199999999994, 527.5, 329.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 338.092, 491.4080000000001, 350.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [492.0, 337.412, 495.5, 344.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [495.5, 338.092, 524.42, 350.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 338.092, 527.5, 350.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.792, 177.608, 370.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [177.6, 358.792, 348.408, 370.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [348.4, 358.792, 524.5360000000001, 370.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.792, 527.5, 370.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 379.49199999999996, 524.0960000000001, 391.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 379.49199999999996, 527.5, 391.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 400.192, 524.0360000000001, 412.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 400.192, 527.5, 412.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.892, 524.264, 432.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.892, 527.5, 432.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 441.592, 524.0000000000002, 453.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 441.592, 527.5, 453.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 462.292, 524.18, 474.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 462.292, 527.5, 474.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 482.99199999999996, 404.61199999999997, 494.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [404.8, 482.312, 408.3, 489.312], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [408.3, 482.99199999999996, 524.412, 494.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 482.99199999999996, 527.5, 494.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 503.692, 524.0360000000001, 515.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 503.692, 527.5, 515.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 524.3919999999999, 523.7840000000002, 536.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 524.3919999999999, 527.5, 536.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 545.092, 226.772, 557.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [226.8, 545.092, 393.6, 557.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [393.6, 545.092, 524.4, 557.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 545.092, 527.4, 557.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 565.792, 524.2760000000003, 577.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 565.792, 527.5, 577.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 586.492, 524.0840000000002, 598.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 586.492, 527.5, 598.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 607.192, 523.844, 619.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 607.192, 527.5, 619.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 627.8919999999999, 266.10800000000006, 639.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 665.3152, 74.2384, 671.7152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.2, 665.776, 76.95, 676.776], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.0, 666.56, 292.66999999999996, 676.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 678.8152, 74.2384, 685.2152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.2, 679.276, 76.95, 690.276], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.4, 680.06, 524.03, 690.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 692.36, 523.9999999999998, 702.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 692.36, 527.0, 702.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 703.86, 524.5300000000001, 713.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 703.86, 527.0, 713.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 715.4599999999999, 420.8300000000002, 725.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [421.3, 715.4599999999999, 524.2, 725.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 715.4599999999999, 527.0, 725.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 726.9599999999999, 524.2299999999999, 736.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 726.9599999999999, 527.0, 736.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 738.56, 349.30000000000007, 748.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 749.8544, 73.9348, 755.6544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.0, 750.26, 76.5, 760.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.5, 750.26, 184.53, 760.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.0544, 73.9348, 767.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.0, 762.4599999999999, 76.5, 772.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.5, 762.4599999999999, 419.73000000000013, 772.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 73.9348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.0, 773.876, 76.75, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.7, 774.66, 122.5, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [246.7, 681.8, 251.7, 702.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [428.5, 599, 433.5, 619.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [181.9, 474.8, 186.9, 495.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [240.7, 347.7, 245.7, 368.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [263, 306.3, 271.4, 327], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "2", "marked_content": [], "index": 1, "path_objects": [{"bbox": [70.9, 555.9, 184.3, 556.4], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 285.6]]}, {"type": "l", "points": [[184.3, 285.6]]}, {"type": "l", "points": [[184.3, 286.1]]}, {"type": "l", "points": [[70.9, 286.1]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [107.0, 86.092, 274.62800000000004, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [274.6, 86.092, 524.4160000000002, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.3119999999999, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.0119999999998, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 247.26800000000003, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [247.5, 147.512, 251.0, 154.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [251.0, 148.19200000000004, 524.24, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 275.2400000000001, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [275.5, 168.89199999999997, 441.784, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [441.9, 168.89199999999997, 452.09999999999997, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [452.1, 168.89199999999997, 523.128, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 168.89199999999997, 527.4, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 522.9320000000002, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 523.1599999999999, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 429.21200000000005, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [429.3, 230.31199999999995, 432.8, 237.31199999999995], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [432.8, 230.992, 524.444, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 524.1439999999999, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 523.9999999999997, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 272.39199999999994, 527.5, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 305.80400000000003, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [306.0, 293.092, 523.056, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 293.092, 527.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 313.79200000000003, 523.2199999999997, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 313.79200000000003, 527.5, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 334.49199999999996, 523.0520000000001, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 334.49199999999996, 527.5, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 355.192, 182.61200000000002, 367.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [182.7, 354.512, 186.2, 361.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [186.2, 355.192, 194.096, 367.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 378.792, 523.9639999999997, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 524.312, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 524.5279999999999, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 524.3239999999998, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 440.892, 527.5, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 461.592, 278.32400000000007, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [278.5, 461.592, 522.9760000000001, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 461.592, 527.5, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 482.292, 241.53199999999998, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [241.5, 481.612, 245.0, 488.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [245.0, 482.292, 248.0, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [248.0, 482.292, 524.3, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 482.292, 527.5, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 502.99199999999996, 524.5039999999999, 514.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 502.99199999999996, 527.5, 514.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 523.692, 263.6360000000001, 535.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [263.8, 523.012, 270.8, 530.012], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [270.8, 523.692, 524.2400000000001, 535.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 523.692, 527.5, 535.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 561.2544, 73.9348, 567.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.0, 560.876, 83.61399999999999, 571.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [83.6, 561.66, 524.2899999999997, 571.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 561.66, 527.0, 571.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 573.66, 524.1299999999998, 583.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 573.66, 527.0, 583.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 585.26, 523.8299999999999, 595.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 585.26, 527.0, 595.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 596.76, 250.37000000000003, 606.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [250.7, 596.76, 524.1000000000001, 606.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 596.76, 527.0, 606.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 608.36, 112.73, 618.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [112.7, 608.36, 117.7, 618.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 619.6544, 73.9348, 625.4544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.0, 619.276, 76.75, 630.276], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.1, 620.06, 176.33, 630.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [176.5, 620.06, 523.7999999999997, 630.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 620.06, 526.9, 630.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 632.06, 248.90000000000003, 642.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 643.5152, 74.2384, 649.9152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.2, 643.976, 76.95, 654.976], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.0, 644.76, 185.03, 654.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 657.0152, 74.2384, 663.4152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [74.2, 657.476, 76.95, 668.476], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [78.7, 658.26, 523.9999999999998, 668.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 658.26, 527.0, 668.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 670.56, 524.1700000000003, 680.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 670.56, 527.0, 680.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 682.06, 155.39999999999998, 692.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 693.4544000000001, 76.8348, 699.2544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 693.076, 79.65, 704.076], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 693.86, 454.69999999999993, 703.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [454.7, 693.86, 521.13, 703.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [521.1, 693.86, 524.4300000000001, 703.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 693.86, 527.0, 703.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 705.86, 524.43, 715.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 705.86, 527.0, 715.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 717.36, 508.20000000000005, 727.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [508.5, 717.36, 523.53, 727.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 717.36, 527.0, 727.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 728.9599999999999, 189.79, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [189.9, 728.9599999999999, 524.2000000000002, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 728.9599999999999, 527.0, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 740.4599999999999, 376.8000000000001, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [377.2, 740.4599999999999, 524.3000000000001, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 740.4599999999999, 527.0, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 752.06, 198.63000000000002, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [198.6, 752.06, 219.4, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [219.4, 752.06, 314.33, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [314.4, 752.06, 524.3900000000001, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 752.06, 527.0, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 763.56, 400.6000000000001, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [400.9, 763.56, 468.72999999999996, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [468.7, 763.56, 524.3299999999999, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 763.56, 526.9, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 94.1, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [94.1, 775.16, 182.13000000000002, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [182.1, 775.16, 184.6, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [107.2, 534, 115.6, 554.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [134.4, 451.2, 142.8, 471.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [455.1, 430.5, 463.5, 451.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [269.1, 282.7, 277.5, 303.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "3", "marked_content": [], "index": 2, "path_objects": [{"bbox": [70.9, 591.9, 184.3, 592.4], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 249.6]]}, {"type": "l", "points": [[184.3, 249.6]]}, {"type": "l", "points": [[184.3, 250.1]]}, {"type": "l", "points": [[70.9, 250.1]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 523.9519999999998, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 523.7480000000002, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.2399999999996, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.4680000000002, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 172.616, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 192.492, 524.3479999999997, 204.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 192.492, 527.5, 204.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 213.19200000000004, 524.1920000000001, 225.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 213.19200000000004, 527.5, 225.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 233.89199999999997, 524.3360000000001, 245.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 233.89199999999997, 527.5, 245.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 254.592, 524.5040000000002, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 254.592, 527.5, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 275.29200000000003, 336.7040000000001, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [337.1, 275.29200000000003, 523.1120000000001, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 275.29200000000003, 527.5, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 104.99600000000001, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [105.0, 295.99199999999996, 108.0, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [108.0, 295.31199999999995, 115.0, 302.31199999999995], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [115.0, 295.99199999999996, 523.888, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 295.99199999999996, 527.5, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 524.5040000000001, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 524.1919999999997, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 523.7119999999999, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 135.188, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [135.2, 378.112, 142.10199999999998, 385.112], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [142.1, 378.792, 524.096, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 455.98400000000015, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [455.9, 398.812, 462.9, 405.812], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [462.9, 399.49199999999996, 468.9, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 423.092, 524.0120000000002, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 423.092, 527.5, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 443.792, 523.808, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 443.792, 527.5, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 464.49199999999996, 524.4439999999997, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 485.192, 425.66, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [426.0, 485.192, 469.404, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [469.4, 485.192, 524.432, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 505.89199999999994, 191.72000000000003, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [191.7, 505.89199999999994, 242.388, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [242.4, 505.89199999999994, 524.4000000000001, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 526.592, 524.5160000000001, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 547.292, 269.8040000000001, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [269.9, 546.6120000000001, 276.80199999999996, 553.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [276.8, 547.292, 499.02800000000013, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 596.7152, 77.4384, 603.1152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 597.1759999999999, 80.25, 608.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 597.9599999999999, 188.33, 607.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 610.0544, 76.8348, 615.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 609.6759999999999, 79.65, 620.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.3, 610.4599999999999, 328.20000000000016, 620.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [328.6, 609.8528, 333.1008, 615.6528], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [333.1, 610.4599999999999, 524.3000000000001, 620.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 610.4599999999999, 527.0, 620.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 622.4599999999999, 524.5000000000001, 632.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 622.4599999999999, 527.0, 632.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 633.9599999999999, 524.0, 643.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 633.9599999999999, 527.0, 643.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 645.56, 414.90000000000015, 655.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [414.9, 645.56, 524.53, 655.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 645.56, 527.0, 655.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 657.06, 88.0, 667.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [88.0, 657.06, 181.03, 667.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 668.5152, 77.4384, 674.9152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 668.976, 80.25, 679.976], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [81.8, 669.76, 524.03, 679.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 669.76, 527.0, 679.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 682.06, 524.1899999999999, 692.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 682.06, 527.0, 692.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 693.66, 524.0300000000003, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 693.66, 527.0, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 705.16, 161.0, 715.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 716.5544, 76.8348, 722.3543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 716.1759999999999, 79.65, 727.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.5, 716.9599999999999, 523.8699999999997, 726.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 716.9599999999999, 527.0, 726.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 728.9599999999999, 523.8000000000001, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 728.9599999999999, 527.0, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 740.4599999999999, 523.8299999999998, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 740.4599999999999, 527.0, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 752.06, 524.0999999999999, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 752.06, 527.0, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 763.56, 156.7, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [156.8, 763.56, 314.63000000000005, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [314.8, 763.56, 524.1, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 763.56, 526.9, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 312.20000000000005, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [312.2, 775.16, 363.03, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [440.7, 723.2, 449.1, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [286.1, 681.8, 294.5, 702.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [172.7, 661.1, 181.1, 681.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [329.7, 661.1, 338.1, 681.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [492.7, 619.7, 501.1, 640.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [137.7, 238.4, 146.1, 259.1], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "4", "marked_content": [], "index": 3, "path_objects": [{"bbox": [70.9, 694.6, 184.3, 695.1], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 146.9]]}, {"type": "l", "points": [[184.3, 146.9]]}, {"type": "l", "points": [[184.3, 147.4]]}, {"type": "l", "points": [[70.9, 147.4]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [107.0, 86.092, 466.5680000000001, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [466.9, 86.092, 523.216, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 441.2720000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [441.5, 106.11200000000002, 448.5, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [448.5, 106.79200000000004, 462.096, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [462.1, 106.79200000000004, 524.308, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 512.288, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [512.7, 127.49199999999998, 523.368, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 286.8920000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [286.9, 147.512, 293.80199999999996, 154.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [293.8, 148.19200000000004, 304.468, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [304.5, 148.19200000000004, 524.4240000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 173.48000000000002, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [173.5, 168.21200000000005, 180.402, 175.21200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [180.4, 168.89199999999997, 253.72000000000003, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [253.7, 168.89199999999997, 330.44, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [330.5, 168.21200000000005, 337.5, 175.21200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [337.5, 168.89199999999997, 524.388, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 168.89199999999997, 527.4, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.5040000000001, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 492.96800000000013, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [493.5, 209.61200000000002, 500.5, 216.61200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [500.5, 210.29200000000006, 524.404, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 368.33600000000007, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 254.592, 524.2439999999999, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 254.592, 527.5, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 275.29200000000003, 321.32000000000005, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [321.3, 275.29200000000003, 493.704, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [493.8, 275.29200000000003, 524.496, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 275.29200000000003, 527.5, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 524.1800000000004, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 295.99199999999996, 527.5, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 523.9879999999999, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 524.42, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 524.3840000000002, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 524.3600000000001, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 523.928, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 131.62400000000002, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 467.392, 522.6960000000001, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 467.392, 527.5, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 488.092, 522.9120000000003, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 488.092, 527.5, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 508.79200000000003, 522.9480000000002, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 508.79200000000003, 527.5, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 529.492, 522.7080000000003, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 529.492, 527.5, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 550.192, 523.2360000000001, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 550.192, 527.5, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 570.8919999999999, 523.1880000000002, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 570.8919999999999, 527.5, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 591.592, 138.50400000000002, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [138.5, 590.912, 145.402, 597.9119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [145.4, 591.592, 148.4, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 638.792, 524.0879999999999, 650.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 638.792, 527.5, 650.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 659.492, 524.0839999999998, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 659.492, 527.5, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 699.3152, 77.4384, 705.7152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 699.776, 80.25, 710.776], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 700.56, 211.63000000000002, 710.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 712.6544, 76.8348, 718.4544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 712.276, 79.65, 723.276], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 713.06, 132.43, 723.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 724.8544, 76.8348, 730.6544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 724.476, 79.65, 735.476], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 725.26, 127.93, 735.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 737.0544, 76.8348, 742.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 736.6759999999999, 79.65, 747.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 737.4599999999999, 187.73000000000002, 747.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 749.2544, 76.8348, 755.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 748.876, 79.65, 759.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.6, 749.66, 237.0, 759.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [237.1, 749.66, 334.03, 759.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [334.0, 749.66, 524.2, 759.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 749.66, 526.9, 759.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 761.66, 118.2, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [118.2, 761.66, 201.83, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [201.8, 761.66, 204.3, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 188.33, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [122.2, 557.6, 130.6, 578.3], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [167.3, 471.9, 175.7, 492.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [445.4, 347.7, 453.8, 368.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "5", "marked_content": [], "index": 4, "path_objects": [{"bbox": [70.9, 722.1, 184.3, 722.6], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 119.4]]}, {"type": "l", "points": [[184.3, 119.4]]}, {"type": "l", "points": [[184.3, 119.9]]}, {"type": "l", "points": [[70.9, 119.9]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 159.308, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [159.3, 86.092, 207.216, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [207.3, 86.092, 524.34, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.024, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.2879999999999, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 424.42399999999986, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [424.9, 148.19200000000004, 449.476, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [449.5, 148.19200000000004, 524.38, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 523.9399999999996, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.2760000000002, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 523.8920000000002, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 524.312, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 524.2039999999998, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 90.296, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [90.3, 272.39199999999994, 122.916, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [123.0, 271.71200000000005, 129.902, 278.71200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [129.9, 272.39199999999994, 523.8360000000002, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 272.39199999999994, 527.5, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 371.612, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 316.692, 524.0400000000002, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 202.832, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [202.8, 336.712, 208.197, 343.712], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [208.2, 337.392, 524.3159999999999, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 168.104, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [168.1, 357.412, 175.00199999999998, 364.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [175.0, 358.092, 524.452, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 469.7720000000002, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [470.0, 378.792, 523.208, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 102.36800000000001, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [102.4, 399.49199999999996, 306.5680000000001, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [306.9, 399.49199999999996, 397.97999999999996, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [398.0, 399.49199999999996, 524.288, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 399.49199999999996, 527.4, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 524.0480000000001, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 524.0600000000001, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 440.892, 527.5, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 461.592, 524.4440000000002, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 461.592, 527.5, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 482.292, 392.5159999999999, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [392.7, 482.292, 446.124, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [446.2, 481.612, 453.102, 488.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [453.1, 482.292, 524.308, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 482.292, 527.4, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 502.99199999999996, 524.036, 514.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 502.99199999999996, 527.5, 514.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 523.692, 524.0839999999997, 535.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 523.692, 527.5, 535.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 544.3919999999999, 524.3960000000002, 556.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 544.3919999999999, 527.5, 556.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 565.092, 523.9760000000001, 577.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 565.092, 527.5, 577.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 585.792, 362.49199999999996, 597.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [362.8, 585.792, 399.40000000000003, 597.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [399.4, 585.792, 418.20399999999995, 597.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [418.3, 585.792, 457.52799999999996, 597.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [457.6, 585.792, 524.392, 597.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 585.792, 527.5, 597.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 606.492, 524.4679999999997, 618.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 606.492, 527.5, 618.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 627.192, 524.3000000000004, 639.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 627.192, 527.5, 639.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 647.8919999999999, 523.7840000000001, 659.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 647.8919999999999, 527.5, 659.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 668.592, 523.808, 680.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 668.592, 527.5, 680.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 689.292, 427.6400000000001, 701.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 726.7544, 76.8348, 732.5544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 726.376, 85.24900000000001, 737.376], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [85.3, 727.16, 89.38, 737.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [89.4, 727.16, 523.0999999999998, 737.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 727.16, 527.0, 737.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 739.16, 449.7, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [449.8, 739.16, 457.40000000000003, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [457.4, 739.16, 524.5, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 739.16, 527.0, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 750.76, 89.33, 760.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.0544, 76.8348, 767.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 761.6759999999999, 79.65, 772.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 762.4599999999999, 337.1, 772.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [337.1, 762.4599999999999, 421.83, 772.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 187.73000000000002, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [194.4, 661.1, 202.8, 681.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [501.2, 578.3, 509.6, 599], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [129.7, 536.9, 138.1, 557.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [313.6, 324.1, 322, 344.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "6", "marked_content": [], "index": 5, "path_objects": [{"bbox": [70.9, 707.4, 184.3, 707.9], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 134.1]]}, {"type": "l", "points": [[184.3, 134.1]]}, {"type": "l", "points": [[184.3, 134.6]]}, {"type": "l", "points": [[70.9, 134.6]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 523.848, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.204, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.0119999999997, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.396, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 195.164, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [195.2, 168.21200000000005, 202.2, 175.21200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [202.2, 168.89199999999997, 524.2800000000001, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.24, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 524.0720000000002, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 524.0959999999999, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 75.896, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [75.9, 251.69200000000004, 501.90000000000003, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [502.0, 251.012, 508.902, 258.012], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [508.9, 251.69200000000004, 519.568, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [519.6, 251.69200000000004, 524.496, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 178.42400000000004, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [178.5, 272.39199999999994, 522.8520000000001, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 272.39199999999994, 527.5, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 130.412, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [130.5, 292.412, 137.5, 299.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [137.5, 293.092, 146.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [146.5, 293.092, 524.0560000000003, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 293.092, 527.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 313.79200000000003, 524.3240000000001, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 313.79200000000003, 527.5, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 334.49199999999996, 524.4560000000001, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 334.49199999999996, 527.5, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 355.192, 127.628, 367.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 402.392, 522.9840000000003, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 402.392, 527.5, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 423.092, 523.4520000000001, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 423.092, 527.5, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 443.792, 523.3680000000002, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 443.792, 527.5, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 464.49199999999996, 522.8039999999999, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 485.192, 523.008, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 505.89199999999994, 314.31600000000003, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [314.4, 505.212, 321.4, 512.212], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [321.4, 505.89199999999994, 326.296, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 529.492, 74.0, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 553.092, 524.1480000000003, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 553.092, 527.5, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 573.792, 523.7720000000002, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 573.792, 527.5, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 594.492, 519.536, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 618.092, 523.9520000000001, 630.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 618.092, 527.5, 630.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 638.792, 524.048, 650.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 638.792, 527.5, 650.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 659.492, 524.4320000000001, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 659.492, 527.5, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 680.192, 524.048, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 680.192, 527.5, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 712.0544, 76.8348, 717.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 711.6759999999999, 88.351, 722.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [88.3, 712.4599999999999, 524.4899999999998, 722.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 712.4599999999999, 527.0, 722.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 724.4599999999999, 257.6, 734.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [257.8, 724.4599999999999, 524.3, 734.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 724.4599999999999, 527.0, 734.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 736.06, 99.33, 746.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 747.3544, 76.8348, 753.1544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 747.76, 79.4, 757.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.4, 747.76, 187.53000000000003, 757.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 759.7152, 77.4384, 766.1152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 760.1759999999999, 80.25, 771.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 760.9599999999999, 130.53, 770.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 133.03, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [212, 640.4, 220.4, 661.1], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [120.9, 554.7, 129.3, 575.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [313, 430.5, 321.4, 451.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [488.3, 389.1, 496.7, 409.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "7", "marked_content": [], "index": 6, "path_objects": [{"bbox": [70.9, 590.7, 184.3, 591.2], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 250.8]]}, {"type": "l", "points": [[184.3, 250.8]]}, {"type": "l", "points": [[184.3, 251.3]]}, {"type": "l", "points": [[70.9, 251.3]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 524.0000000000001, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.3360000000004, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.0720000000001, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.2280000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 523.7599999999998, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 212.80399999999997, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [212.8, 188.91199999999998, 219.702, 195.91199999999998], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [219.7, 189.592, 222.7, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 213.19200000000004, 524.388, 225.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 213.19200000000004, 527.5, 225.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 233.89199999999997, 523.9639999999996, 245.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 233.89199999999997, 527.5, 245.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 254.592, 465.6440000000001, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [465.6, 254.592, 523.3560000000001, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 254.592, 527.5, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 275.29200000000003, 121.62800000000001, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [121.7, 274.612, 128.602, 281.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [128.6, 275.29200000000003, 524.0719999999999, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 275.29200000000003, 527.5, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 524.0840000000001, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 295.99199999999996, 527.5, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 524.528, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 524.4199999999998, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 524.0720000000001, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 524.0000000000002, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 313.60400000000004, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [313.8, 398.812, 320.702, 405.812], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [320.7, 399.49199999999996, 524.412, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 192.90800000000002, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [192.9, 420.192, 523.32, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 489.08000000000015, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [489.1, 440.212, 496.002, 447.212], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [496.0, 440.892, 505.0, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [505.0, 440.892, 515.896, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 464.49199999999996, 524.1480000000001, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 485.192, 524.036, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 505.89199999999994, 524.1200000000002, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 526.592, 407.9840000000001, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [407.9, 526.592, 457.772, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [457.9, 526.592, 524.3919999999999, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 547.292, 426.9800000000001, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [427.0, 547.292, 523.3000000000001, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 547.292, 527.5, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 567.992, 522.9320000000001, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 567.992, 527.5, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 595.4152, 77.4384, 601.8152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 595.876, 80.25, 606.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.4, 596.66, 378.5, 606.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [378.7, 596.66, 523.4899999999999, 606.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 596.66, 526.9, 606.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 608.9599999999999, 112.13, 618.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [112.2, 608.9599999999999, 421.78000000000014, 618.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [422.1, 608.9599999999999, 523.37, 618.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 608.9599999999999, 526.9, 618.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 620.56, 523.0699999999999, 630.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 620.56, 527.0, 630.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 632.06, 523.1000000000001, 642.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.06, 527.0, 642.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 643.66, 519.3999999999995, 653.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [520.4, 643.66, 524.48, 653.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 643.66, 527.0, 653.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 655.16, 369.43000000000006, 665.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [369.8, 655.16, 524.2299999999999, 665.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 655.16, 527.0, 665.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 666.76, 194.3, 676.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [194.5, 665.976, 197.25, 676.976], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [198.1, 666.76, 523.9300000000001, 676.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 678.26, 524.1000000000003, 688.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 678.26, 527.0, 688.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 689.86, 392.1, 699.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 701.1544, 76.8348, 706.9544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 700.776, 79.65, 711.776], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 701.56, 187.73000000000002, 711.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 713.5152, 77.4384, 719.9152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 713.976, 80.25, 724.976], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [82.8, 714.76, 384.58000000000015, 724.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [384.6, 714.76, 523.5, 724.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 714.76, 526.9, 724.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 727.06, 523.3299999999999, 737.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 727.06, 527.0, 737.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 738.56, 523.0, 748.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 738.56, 527.0, 748.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 750.16, 468.6999999999997, 760.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [469.0, 750.16, 475.6, 760.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [475.6, 750.16, 524.5, 760.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 750.16, 527.0, 760.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 761.66, 94.33, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [94.4, 761.66, 96.9, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 188.33, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [94.9, 723.2, 103.3, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [383.6, 551.8, 392, 572.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [171, 291.8, 179.4, 312.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [418.4, 223.9, 426.8, 244.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "8", "marked_content": [], "index": 7, "path_objects": [{"bbox": [70.9, 707.4, 184.3, 707.9], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 134.1]]}, {"type": "l", "points": [[184.3, 134.1]]}, {"type": "l", "points": [[184.3, 134.6]]}, {"type": "l", "points": [[70.9, 134.6]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 522.7399999999999, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 95.528, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [95.7, 106.11200000000002, 102.602, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [102.6, 106.79200000000004, 113.268, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [113.3, 106.79200000000004, 524.2640000000002, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 290.26400000000007, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 174.69200000000004, 111.396, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 174.69200000000004, 459.01599999999996, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [459.4, 174.69200000000004, 520.1919999999999, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [520.3, 174.69200000000004, 523.3, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 195.39199999999997, 523.5000000000002, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 216.092, 523.3680000000004, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 236.79200000000006, 522.8520000000001, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 257.49199999999996, 523.1280000000002, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 278.192, 384.4440000000001, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [384.4, 277.512, 391.4, 284.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [391.4, 278.192, 396.296, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 325.392, 512.6600000000001, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [120.7, 348.99199999999996, 123.7, 360.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 372.592, 522.8880000000001, 384.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 372.592, 527.5, 384.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 393.292, 522.7560000000003, 405.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 393.292, 527.5, 405.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 413.99199999999996, 523.1880000000001, 425.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 413.99199999999996, 527.5, 425.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 434.692, 523.0319999999997, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 434.692, 527.5, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 455.392, 523.3800000000001, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 455.392, 527.5, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 476.092, 523.0320000000002, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 476.092, 527.5, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 496.792, 523.0679999999999, 508.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 496.792, 527.5, 508.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 517.492, 523.2959999999999, 529.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 517.492, 527.5, 529.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 538.192, 171.828, 550.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [171.8, 537.512, 178.702, 544.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [178.7, 538.192, 181.7, 550.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [181.7, 538.192, 186.596, 550.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 585.3919999999999, 524.448, 597.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 606.092, 418.7480000000001, 618.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [419.2, 605.412, 426.2, 612.4119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [426.2, 606.092, 524.336, 618.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 606.092, 527.5, 618.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 712.0544, 76.8348, 717.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 711.6759999999999, 79.65, 722.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 712.4599999999999, 132.43, 722.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 724.4152, 77.4384, 730.8152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 725.66, 80.0, 735.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.0, 725.66, 132.73000000000002, 735.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 737.8152, 77.4384, 744.2152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 739.06, 80.0, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.0, 739.06, 132.73000000000002, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 751.1544, 76.8348, 756.9544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 750.776, 79.65, 761.776], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.1, 751.56, 290.78, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [291.1, 751.56, 357.17, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [357.2, 751.56, 524.09, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 751.56, 526.9, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 763.56, 524.13, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 763.56, 527.0, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 461.90000000000015, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [411.9, 743.9, 420.3, 757.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [430.5, 593.2, 438.9, 613.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [237.8, 463.2, 246.2, 483.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [218.5, 194.1, 226.9, 214.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "9", "marked_content": [], "index": 8, "path_objects": [{"bbox": [70.9, 684.3, 184.3, 684.8], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 157.2]]}, {"type": "l", "points": [[184.3, 157.2]]}, {"type": "l", "points": [[184.3, 157.7]]}, {"type": "l", "points": [[70.9, 157.7]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 412.4000000000001, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [412.7, 85.41199999999998, 419.602, 92.41199999999998], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [419.6, 86.092, 524.264, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 523.3639999999999, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 111.396, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 153.992, 522.904, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 174.69200000000004, 523.0200000000002, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 195.39199999999997, 523.2119999999998, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 216.092, 523.296, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 236.79200000000006, 431.34000000000003, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [431.3, 236.11200000000002, 438.202, 243.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [438.2, 236.79200000000006, 449.3, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 283.99199999999996, 524.2800000000001, 295.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 283.99199999999996, 527.5, 295.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 304.692, 286.12399999999997, 316.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [286.1, 304.692, 523.436, 316.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 304.692, 527.5, 316.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 325.392, 522.9320000000002, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 325.392, 527.5, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 346.092, 523.1120000000002, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 346.092, 527.5, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 366.792, 238.35200000000006, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [238.6, 366.112, 245.50199999999998, 373.112], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [245.5, 366.792, 248.5, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [248.5, 366.792, 415.72, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [416.0, 366.792, 448.304, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [448.3, 366.792, 524.1999999999999, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 387.49199999999996, 523.9759999999997, 399.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 387.49199999999996, 527.5, 399.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 408.192, 524.036, 420.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 408.192, 527.5, 420.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 428.892, 524.2519999999998, 440.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 428.892, 527.5, 440.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 449.592, 524.0240000000002, 461.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 449.592, 527.5, 461.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 470.292, 524.3719999999996, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 470.292, 527.5, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 490.99199999999996, 227.82799999999997, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [227.9, 490.99199999999996, 284.408, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [284.6, 490.99199999999996, 524.144, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 490.99199999999996, 527.5, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 511.692, 523.904, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 511.692, 527.5, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 532.3919999999999, 524.3600000000001, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 532.3919999999999, 527.5, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 553.092, 524.1320000000002, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 553.092, 527.5, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 573.792, 312.704, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [312.7, 573.792, 523.432, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 573.792, 527.5, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 594.492, 522.8120000000002, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 594.492, 527.5, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 615.192, 522.6319999999998, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 615.192, 527.5, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 635.8919999999999, 219.33200000000002, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [219.3, 635.212, 226.3, 642.212], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [226.3, 635.8919999999999, 229.3, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [229.3, 635.8919999999999, 237.19600000000003, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 688.9544000000001, 76.8348, 694.7544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 688.576, 79.65, 699.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.9, 689.36, 523.83, 699.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 689.36, 527.0, 699.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 701.36, 524.1299999999999, 711.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 701.36, 527.0, 711.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 712.9599999999999, 524.1000000000001, 722.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 712.9599999999999, 527.0, 722.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 724.4599999999999, 523.67, 734.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 724.4599999999999, 527.0, 734.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 736.06, 151.33, 746.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 747.5152, 77.4384, 753.9152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 747.976, 80.25, 758.976], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 748.76, 188.33, 758.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 760.8544, 76.8348, 766.6544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 760.476, 79.65, 771.476], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 761.26, 127.93, 771.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 133.03, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [219.8, 723.2, 228.2, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [513.7, 430.5, 522.1, 451.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [208.4, 389.1, 216.8, 409.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [272.4, 327, 280.8, 347.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "10", "marked_content": [], "index": 9, "path_objects": [{"bbox": [70.9, 685.6, 184.3, 686.1], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 155.9]]}, {"type": "l", "points": [[184.3, 155.9]]}, {"type": "l", "points": [[184.3, 156.4]]}, {"type": "l", "points": [[70.9, 156.4]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 74.0, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 86.092, 523.9399999999999, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 125.288, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [125.3, 106.79200000000004, 220.604, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [220.6, 106.11200000000002, 227.50199999999998, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [227.5, 106.79200000000004, 524.2600000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 106.79200000000004, 527.4, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.2400000000001, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.0720000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 524.1200000000003, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 523.9159999999999, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 524.2640000000001, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 523.9759999999998, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 524.3479999999998, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 524.1919999999998, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 272.39199999999994, 527.5, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 421.59200000000016, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [421.6, 293.092, 496.276, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [496.3, 293.092, 524.464, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 293.092, 527.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 313.79200000000003, 523.9879999999998, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 313.79200000000003, 527.5, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 334.49199999999996, 524.3240000000002, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 334.49199999999996, 527.5, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 355.192, 207.308, 367.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 378.792, 524.1960000000001, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 513.7399999999999, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [514.5, 398.812, 521.5, 405.812], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [521.5, 399.49199999999996, 524.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 523.7600000000004, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 209.10800000000003, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [209.2, 440.212, 216.2, 447.212], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [216.2, 440.892, 301.49600000000004, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [301.6, 440.892, 523.0600000000001, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 440.892, 527.5, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 461.592, 522.7880000000002, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 461.592, 527.5, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 482.292, 522.8480000000002, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 482.292, 527.5, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 502.99199999999996, 273.128, 514.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [273.2, 502.312, 280.2, 509.312], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [280.2, 502.99199999999996, 285.096, 514.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 526.592, 523.8360000000002, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 547.292, 524.3359999999998, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 547.292, 527.5, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 567.992, 523.8680000000002, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 567.992, 527.5, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 588.692, 524.2160000000001, 600.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 588.692, 527.5, 600.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 609.3919999999999, 524.204, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 609.3919999999999, 527.5, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 630.092, 524.4079999999999, 642.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 630.092, 527.5, 642.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 650.792, 73.16, 662.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [73.2, 650.792, 185.92800000000003, 662.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [186.0, 650.792, 524.0399999999998, 662.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 650.792, 527.5, 662.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 690.2544, 76.8348, 696.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 689.876, 79.65, 700.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [89.3, 690.66, 524.1000000000004, 700.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 690.66, 527.0, 700.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 702.66, 382.90000000000003, 712.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 713.9544000000001, 76.8348, 719.7544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 713.576, 79.65, 724.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.5, 714.36, 523.6999999999998, 724.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 714.36, 527.0, 724.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 726.36, 298.80000000000007, 736.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 737.8152, 77.4384, 744.2152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 739.06, 81.58, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [81.6, 739.06, 522.9299999999998, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 739.06, 527.0, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 751.36, 524.3900000000001, 761.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 751.36, 527.0, 761.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.9599999999999, 179.13000000000002, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 132.43, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [372.3, 427.6, 380.7, 448.3], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [132.2, 87.7, 140.6, 108.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "11", "marked_content": [], "index": 10, "path_objects": [{"bbox": [70.9, 757.4, 184.3, 757.9], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 84.1]]}, {"type": "l", "points": [[184.3, 84.1]]}, {"type": "l", "points": [[184.3, 84.6]]}, {"type": "l", "points": [[70.9, 84.6]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 524.4440000000002, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 523.9280000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.552, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.372, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 524.4200000000001, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 523.9279999999999, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 401.9480000000001, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 257.49199999999996, 111.396, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 257.49199999999996, 523.1560000000001, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 278.192, 522.9240000000002, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 298.89199999999994, 522.756, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 319.592, 522.7440000000003, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 340.292, 523.1879999999999, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 340.292, 527.5, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 360.99199999999996, 523.0920000000001, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 381.692, 523.4159999999998, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 402.392, 373.02000000000004, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [373.1, 401.712, 380.1, 408.712], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [380.1, 402.392, 384.99600000000004, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 449.592, 524.328, 461.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 449.592, 527.5, 461.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 470.292, 524.3600000000001, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 470.292, 527.5, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 490.99199999999996, 524.3359999999999, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 490.99199999999996, 527.5, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 511.692, 524.1440000000002, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 511.692, 527.5, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 532.3919999999999, 523.7239999999996, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 532.3919999999999, 527.5, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 553.092, 523.5560000000004, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 553.092, 527.5, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 573.792, 523.928, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 573.792, 527.5, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 594.492, 523.856, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 594.492, 527.5, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 615.192, 524.2519999999998, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 615.192, 527.5, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 635.8919999999999, 284.6240000000001, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 659.492, 408.32400000000007, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [408.6, 659.492, 478.44, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [478.6, 659.492, 524.32, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 659.492, 527.5, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 680.192, 267.8, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [267.9, 680.192, 523.0199999999999, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 680.192, 527.5, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 700.8919999999999, 523.0400000000002, 712.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 700.8919999999999, 527.5, 712.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 721.592, 523.0280000000001, 733.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 721.592, 527.5, 733.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 742.292, 132.92, 754.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [133.0, 741.6120000000001, 140.0, 748.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [140.0, 742.292, 523.9879999999999, 754.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 742.292, 527.5, 754.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.0544, 76.8348, 767.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 761.6759999999999, 79.65, 772.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 762.4599999999999, 155.83, 772.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 163.83, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [163.8, 774.66, 166.3, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [221.6, 365.5, 230, 386.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "12", "marked_content": [], "index": 11, "path_objects": [{"bbox": [70.9, 768.4, 184.3, 768.9], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 73.1]]}, {"type": "l", "points": [[184.3, 73.1]]}, {"type": "l", "points": [[184.3, 73.6]]}, {"type": "l", "points": [[70.9, 73.6]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 524.468, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.3240000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 524.3719999999996, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.012, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 523.6639999999999, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.4200000000002, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 524.3360000000002, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 523.9759999999999, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 524.2880000000002, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 523.856, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 272.39199999999994, 527.5, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 523.7720000000002, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 293.092, 527.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 313.79200000000003, 523.8919999999999, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 313.79200000000003, 527.5, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 334.49199999999996, 179.82800000000003, 346.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 381.692, 111.396, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 381.692, 523.3120000000001, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 402.392, 523.0559999999998, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 402.392, 527.5, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 423.092, 522.9120000000001, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 423.092, 527.5, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 443.792, 522.9599999999998, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 443.792, 527.5, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 464.49199999999996, 222.312, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [222.4, 463.812, 229.302, 470.812], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [229.3, 464.49199999999996, 234.19600000000003, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 488.092, 74.0, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 511.692, 524.088, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 511.692, 527.5, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 532.3919999999999, 524.0599999999998, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 532.3919999999999, 527.5, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 553.092, 524.1920000000001, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 553.092, 527.5, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 573.792, 524.3720000000001, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 573.792, 527.5, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 594.492, 524.1080000000002, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 594.492, 527.5, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 615.192, 524.624, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 615.192, 527.5, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 635.8919999999999, 524.4799999999998, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 635.8919999999999, 527.5, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 656.592, 524.4800000000001, 668.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 656.592, 527.5, 668.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 677.292, 512.5160000000001, 689.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 700.8919999999999, 524.34, 712.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 700.8919999999999, 527.5, 712.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 721.592, 524.3000000000003, 733.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 721.592, 527.5, 733.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 188.33, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [456.7, 743.9, 465.1, 757.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [167.8, 578.3, 176.2, 599], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "13", "marked_content": [], "index": 12, "path_objects": [{"bbox": [70.9, 663.8, 184.3, 664.3], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 177.7]]}, {"type": "l", "points": [[184.3, 177.7]]}, {"type": "l", "points": [[184.3, 178.2]]}, {"type": "l", "points": [[70.9, 178.2]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 457.17200000000014, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [457.5, 85.41199999999998, 464.5, 92.41199999999998], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [464.5, 86.092, 524.32, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.1560000000002, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 523.856, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.4080000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 524.5399999999997, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 523.8320000000001, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 524.384, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 524.1680000000001, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 168.428, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [168.6, 251.012, 175.50199999999998, 258.012], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [175.5, 251.69200000000004, 524.544, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 125.0, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [125.0, 272.39199999999994, 286.29200000000003, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [286.4, 272.39199999999994, 524.18, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 272.39199999999994, 527.4, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 524.4200000000004, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 293.092, 527.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 313.79200000000003, 236.22800000000007, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 360.99199999999996, 111.396, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 360.99199999999996, 523.0840000000002, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 381.692, 523.0200000000002, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 402.392, 522.7560000000002, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 402.392, 527.5, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 423.092, 523.2839999999999, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 423.092, 527.5, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 443.792, 523.2240000000002, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 443.792, 527.5, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 464.49199999999996, 522.8160000000003, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 485.192, 523.1640000000001, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 505.89199999999994, 522.7800000000002, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 526.592, 522.5160000000001, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 547.292, 523.3799999999999, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 547.292, 527.5, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 567.992, 522.9839999999998, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 567.992, 527.5, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 588.692, 523.308, 600.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 588.692, 527.5, 600.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 609.3919999999999, 523.3679999999997, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 609.3919999999999, 527.5, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 630.092, 523.4999999999998, 642.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 630.092, 527.5, 642.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 668.5152, 77.4384, 674.9152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 669.76, 81.58, 679.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [81.6, 669.76, 523.3299999999998, 679.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 669.76, 527.0, 679.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 682.06, 523.2299999999998, 692.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 682.06, 527.0, 692.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 693.66, 198.0, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [198.0, 693.66, 209.6, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [209.6, 693.66, 340.93, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 704.9544000000001, 76.8348, 710.7544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 704.576, 79.65, 715.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.9, 705.36, 524.0300000000001, 715.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 705.36, 527.0, 715.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 717.36, 524.0299999999999, 727.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 717.36, 527.0, 727.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 728.9599999999999, 387.83000000000015, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [388.3, 728.9599999999999, 390.8, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [390.8, 728.9599999999999, 393.3, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [393.4, 728.9599999999999, 524.29, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 728.9599999999999, 526.9, 738.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 740.4599999999999, 524.1299999999998, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 740.4599999999999, 527.0, 750.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 752.06, 523.7299999999997, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 752.06, 527.0, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 763.56, 283.20000000000005, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [283.5, 763.56, 524.13, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 763.56, 527.0, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 147.73000000000002, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [138.1, 723.2, 146.5, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [345.6, 132, 354, 152.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "14", "marked_content": [], "index": 13, "path_objects": [{"bbox": [70.9, 745.9, 184.3, 746.4], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 95.6]]}, {"type": "l", "points": [[184.3, 95.6]]}, {"type": "l", "points": [[184.3, 96.1]]}, {"type": "l", "points": [[70.9, 96.1]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 522.684, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 106.79200000000004, 137.124, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [137.1, 106.11200000000002, 138.85, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [138.9, 106.11200000000002, 145.802, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [145.8, 106.79200000000004, 150.828, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 524.3519999999999, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 174.69200000000004, 524.0120000000001, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 524.216, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 216.092, 524.0360000000003, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 236.79200000000006, 524.1920000000001, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 257.49199999999996, 524.0840000000001, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 278.192, 523.9640000000002, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 298.89199999999994, 523.9280000000002, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 319.592, 524.0239999999999, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 340.292, 524.0119999999997, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 340.292, 527.5, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 360.99199999999996, 523.868, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 381.692, 524.0, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 402.392, 524.552, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 402.392, 527.5, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 423.092, 95.528, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [120.7, 446.692, 123.7, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 470.292, 523.4280000000001, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 470.292, 527.5, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 490.99199999999996, 522.9359999999999, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 490.99199999999996, 527.5, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 511.692, 523.452, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 511.692, 527.5, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 532.3919999999999, 523.3320000000001, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 532.3919999999999, 527.5, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 553.092, 523.308, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 553.092, 527.5, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 573.792, 522.8520000000003, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 573.792, 527.5, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 594.492, 522.9120000000003, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 594.492, 527.5, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 615.192, 522.8519999999997, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 615.192, 527.5, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 635.8919999999999, 523.1879999999998, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 635.8919999999999, 527.5, 647.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 656.592, 523.1400000000003, 668.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 656.592, 527.5, 668.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 677.292, 522.744, 689.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 677.292, 527.5, 689.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 697.992, 346.4520000000001, 709.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [346.4, 697.3119999999999, 353.4, 704.3119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [353.4, 697.992, 361.428, 709.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 750.5544, 76.8348, 756.3543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 750.1759999999999, 79.65, 761.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 750.9599999999999, 201.03, 760.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.7544, 76.8348, 768.5544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 762.376, 79.65, 773.376], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.1, 763.16, 147.03, 773.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [147.0, 763.16, 523.68, 773.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 763.16, 526.9, 773.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 341.6, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [451.9, 176.3, 460.3, 197], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "15", "marked_content": [], "index": 14, "path_objects": [{"bbox": [70.9, 769.6, 184.3, 770.1], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 71.9]]}, {"type": "l", "points": [[184.3, 71.9]]}, {"type": "l", "points": [[184.3, 72.4]]}, {"type": "l", "points": [[70.9, 72.4]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 524.04, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.2639999999999, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 523.9160000000003, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.1080000000002, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 524.0120000000002, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.3240000000001, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 524.084, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 524.2999999999998, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 524.0480000000001, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 251.69200000000004, 527.5, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 272.39199999999994, 524.0840000000001, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 272.39199999999994, 527.5, 284.39199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 293.092, 523.8440000000002, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 293.092, 527.5, 305.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 313.79200000000003, 409.94, 325.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 337.392, 523.8480000000001, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 524.24, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 524.0840000000001, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 524.4440000000001, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 524.2999999999996, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 245.2640000000001, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 488.092, 111.396, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 488.092, 523.4680000000001, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 488.092, 527.5, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 508.79200000000003, 522.9960000000003, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 508.79200000000003, 527.5, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 529.492, 523.0319999999999, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 529.492, 527.5, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 550.192, 523.392, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 550.192, 527.5, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 570.8919999999999, 522.684, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 570.8919999999999, 527.5, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 591.592, 523.1640000000001, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.592, 527.5, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 612.292, 522.7080000000003, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 612.292, 527.5, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 632.992, 523.0559999999998, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.992, 527.5, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 653.692, 452.68800000000005, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [452.7, 653.012, 459.7, 660.012], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [459.7, 653.692, 470.368, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [470.3, 653.692, 475.196, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 700.8919999999999, 524.412, 712.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 700.8919999999999, 527.5, 712.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 721.592, 524.1919999999999, 733.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 721.592, 527.5, 733.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 742.292, 524.264, 754.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 742.292, 527.5, 754.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 187.73000000000002, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [233.1, 681.8, 241.5, 702.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [315.9, 599, 324.3, 619.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [355.8, 155.6, 364.2, 176.3], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "16", "marked_content": [], "index": 15, "path_objects": [{"bbox": [70.9, 745.2, 184.3, 745.7], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 96.3]]}, {"type": "l", "points": [[184.3, 96.3]]}, {"type": "l", "points": [[184.3, 96.8]]}, {"type": "l", "points": [[70.9, 96.8]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 524.144, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 245.74400000000003, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [245.7, 106.79200000000004, 523.1400000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 523.0760000000001, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 233.88800000000003, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [233.9, 147.512, 240.9, 154.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [240.9, 148.19200000000004, 524.1840000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 523.952, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 196.08799999999997, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [196.2, 189.592, 523.104, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 522.752, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 316.67600000000004, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [316.7, 230.31199999999995, 323.602, 237.31199999999995], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [323.6, 230.992, 337.30400000000003, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [337.3, 230.992, 342.196, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [342.2, 230.992, 345.2, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 254.592, 524.3760000000001, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 254.592, 527.5, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 275.29200000000003, 524.348, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 275.29200000000003, 527.5, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 524.3960000000002, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 295.99199999999996, 527.5, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 523.9760000000001, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 523.9999999999999, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 524.0600000000001, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 115.544, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 402.392, 74.0, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 425.99199999999996, 111.396, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 425.99199999999996, 522.7360000000001, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 425.99199999999996, 527.5, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 446.692, 523.1040000000003, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 446.692, 527.5, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 467.392, 523.2479999999998, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 467.392, 527.5, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 488.092, 523.1160000000002, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 488.092, 527.5, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 508.79200000000003, 523.0200000000001, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 508.79200000000003, 527.5, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 529.492, 523.5120000000002, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 529.492, 527.5, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 550.192, 522.8160000000003, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 550.192, 527.5, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 570.8919999999999, 523.4039999999998, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 570.8919999999999, 527.5, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 591.592, 522.7560000000001, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.592, 527.5, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 612.292, 523.1279999999998, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 612.292, 527.5, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 632.992, 522.9839999999999, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.992, 527.5, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 653.692, 522.6840000000002, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 653.692, 527.5, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 674.3919999999999, 356.61600000000004, 686.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [356.6, 673.712, 363.6, 680.712], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [363.6, 674.3919999999999, 368.49600000000004, 686.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 749.8544, 76.8348, 755.6544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 749.476, 79.65, 760.476], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 750.26, 132.43, 760.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.0544, 76.8348, 767.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 761.6759999999999, 79.65, 772.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 762.4599999999999, 132.43, 772.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 145.83, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [], "dimensions": [595, 842], "page_number": "17", "marked_content": [], "index": 16, "path_objects": [], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 524.2560000000001, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 524.492, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 80.0, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.0, 127.49199999999998, 161.12, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [161.1, 127.49199999999998, 524.2800000000001, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.4200000000001, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 524.396, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.324, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 524.5759999999999, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 524.2399999999999, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 344.3360000000001, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 275.29200000000003, 524.2800000000001, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 275.29200000000003, 527.5, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 524.0600000000001, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 524.0120000000001, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 524.5159999999998, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 524.1560000000001, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 524.024, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 524.1559999999997, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 524.6360000000002, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 291.812, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 464.49199999999996, 524.4920000000002, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 485.192, 523.8680000000002, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 505.89199999999994, 98.21600000000001, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [98.4, 505.89199999999994, 523.8960000000001, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 526.592, 278.3120000000001, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [278.7, 526.592, 523.0440000000001, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 547.292, 523.1000000000001, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 547.292, 527.5, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 567.992, 452.8759999999999, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 591.592, 523.9520000000002, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.592, 527.5, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 612.292, 524.3600000000002, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 612.292, 527.5, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 632.992, 524.1800000000002, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.992, 527.5, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 653.692, 523.9880000000003, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 653.692, 527.5, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 674.3919999999999, 523.8080000000001, 686.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 674.3919999999999, 527.5, 686.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 695.092, 112.292, 707.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [112.3, 695.092, 523.216, 707.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 695.092, 527.5, 707.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 715.792, 522.9680000000001, 727.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 715.792, 527.5, 727.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [130.9, 723.2, 139.3, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [109.2, 471.9, 117.6, 492.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [504.1, 303.4, 512.5, 324.1], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "18", "marked_content": [], "index": 17, "path_objects": [{"bbox": [70.9, 720.9, 184.3, 721.4], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 120.6]]}, {"type": "l", "points": [[184.3, 120.6]]}, {"type": "l", "points": [[184.3, 121.1]]}, {"type": "l", "points": [[70.9, 121.1]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 522.932, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 131.612, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [131.7, 106.11200000000002, 138.60199999999998, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [138.6, 106.79200000000004, 141.6, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [141.6, 106.79200000000004, 146.49599999999998, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 130.39199999999997, 524.1679999999997, 142.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 130.39199999999997, 527.5, 142.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 151.092, 524.1679999999998, 163.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 151.092, 527.5, 163.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 171.79200000000006, 524.2639999999999, 183.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 171.79200000000006, 527.5, 183.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 192.492, 524.0, 204.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 192.492, 527.5, 204.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 213.19200000000004, 524.336, 225.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 213.19200000000004, 527.5, 225.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 233.89199999999997, 524.6120000000002, 245.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 233.89199999999997, 527.5, 245.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 254.592, 524.2040000000001, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 254.592, 527.5, 266.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 275.29200000000003, 524.3600000000001, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 275.29200000000003, 527.5, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 524.4080000000001, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 295.99199999999996, 527.5, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 524.0479999999999, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 316.692, 527.5, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 524.1080000000001, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 109.99999999999999, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [110.0, 357.412, 117.0, 364.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [117.0, 358.092, 120.0, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 381.692, 524.0360000000002, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 402.392, 523.9879999999998, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 402.392, 527.5, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 423.092, 523.8559999999998, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 423.092, 527.5, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 443.792, 524.108, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 443.792, 527.5, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 464.49199999999996, 487.4959999999999, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [488.0, 464.49199999999996, 523.208, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 485.192, 523.1600000000003, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 505.89199999999994, 522.8000000000001, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 526.592, 504.87199999999996, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [504.9, 525.912, 511.9, 532.9119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [511.9, 526.592, 516.7959999999999, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 550.192, 524.4919999999997, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 550.192, 527.5, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 570.8919999999999, 443.24000000000007, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [443.3, 570.8919999999999, 523.256, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 570.8919999999999, 527.5, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 591.592, 312.47600000000006, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [312.8, 591.592, 524.3000000000001, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.592, 527.5, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 612.292, 524.0480000000002, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 612.292, 527.5, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 632.992, 524.5639999999996, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.992, 527.5, 644.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 653.692, 524.2760000000001, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 653.692, 527.5, 665.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 674.3919999999999, 314.0000000000001, 686.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 725.5544, 76.8348, 731.3543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 725.1759999999999, 79.65, 736.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 725.9599999999999, 132.43, 735.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 737.8152, 77.4384, 744.2152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 738.276, 80.25, 749.276], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.6, 739.06, 84.67999999999999, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [84.7, 739.06, 523.3999999999995, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 739.06, 527.0, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 751.36, 523.5, 761.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 751.36, 527.0, 761.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.9599999999999, 317.1, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [317.1, 762.9599999999999, 321.18, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [321.2, 762.9599999999999, 323.7, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [323.7, 762.9599999999999, 431.83, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 132.43, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [251.6, 640.4, 260, 661.1], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [344.4, 599, 352.8, 619.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [460.3, 471.9, 468.7, 492.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [93.6, 347.7, 102, 368.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [362.1, 158.5, 370.5, 179.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "19", "marked_content": [], "index": 18, "path_objects": [{"bbox": [70.9, 718.3, 184.3, 718.8], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 123.2]]}, {"type": "l", "points": [[184.3, 123.2]]}, {"type": "l", "points": [[184.3, 123.7]]}, {"type": "l", "points": [[70.9, 123.7]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [107.0, 86.092, 524.4680000000002, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 523.9280000000002, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 523.9040000000002, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.4319999999999, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 265.4120000000001, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [265.4, 168.89199999999997, 523.436, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 252.308, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [252.4, 188.91199999999998, 259.4, 195.91199999999998], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [259.4, 189.592, 524.36, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 266.12000000000006, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [266.2, 210.29200000000006, 523.108, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 230.992, 345.05600000000004, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [345.2, 230.31199999999995, 352.2, 237.31199999999995], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [352.2, 230.992, 360.228, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [360.2, 230.992, 524.1080000000001, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 230.992, 527.5, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 251.69200000000004, 504.3200000000001, 263.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 275.29200000000003, 477.7880000000002, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [478.3, 275.29200000000003, 524.38, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 275.29200000000003, 527.4, 287.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 295.99199999999996, 523.868, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 295.99199999999996, 527.5, 307.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 316.692, 365.90000000000003, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [365.9, 316.692, 523.292, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 316.692, 527.4, 328.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 337.392, 522.8600000000004, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 337.392, 527.5, 349.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 358.092, 460.84400000000034, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [461.1, 357.412, 468.1, 364.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [468.1, 358.092, 476.12800000000004, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [476.1, 358.092, 479.1, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [479.6, 358.092, 524.3720000000001, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 358.092, 527.5, 370.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 378.792, 524.1559999999997, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 378.792, 527.5, 390.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 399.49199999999996, 524.48, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 399.49199999999996, 527.5, 411.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 420.192, 387.644, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [387.8, 420.192, 523.2560000000001, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 420.192, 527.5, 432.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.892, 523.2560000000001, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 440.892, 527.5, 452.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 461.592, 523.484, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 461.592, 527.5, 473.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 482.292, 94.316, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [94.4, 481.612, 101.302, 488.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [101.3, 482.292, 112.196, 494.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 505.89199999999994, 524.4800000000001, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 526.592, 523.8920000000002, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 547.292, 523.8080000000002, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 547.292, 527.5, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 567.992, 524.264, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 567.992, 527.5, 579.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 588.692, 524.1920000000002, 600.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 588.692, 527.5, 600.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 609.3919999999999, 509.8279999999999, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [510.0, 609.3919999999999, 523.164, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 609.3919999999999, 527.5, 621.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 630.092, 522.8840000000002, 642.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 630.092, 527.5, 642.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 650.792, 522.8000000000003, 662.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 650.792, 527.5, 662.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 671.492, 362.9360000000001, 683.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [362.9, 670.8119999999999, 369.9, 677.8119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [369.9, 671.492, 372.9, 683.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [372.9, 671.492, 380.796, 683.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 722.9544000000001, 76.8348, 728.7544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 722.576, 79.65, 733.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 723.36, 132.43, 733.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 735.1544, 76.8348, 740.9544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 734.776, 79.65, 745.776], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 735.56, 127.93, 745.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 747.3544, 76.8348, 753.1544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 746.976, 79.65, 757.976], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 747.76, 132.43, 757.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 759.7152, 77.4384, 766.1152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 760.1759999999999, 80.25, 771.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 760.9599999999999, 133.03, 770.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 774.36, 80.0, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.0, 774.36, 132.73000000000002, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [402.4, 702.5, 410.8, 723.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [455.3, 489.7, 463.7, 510.4], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "20", "marked_content": [], "index": 19, "path_objects": [{"bbox": [70.9, 731.8, 184.3, 732.3], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 109.7]]}, {"type": "l", "points": [[184.3, 109.7]]}, {"type": "l", "points": [[184.3, 110.2]]}, {"type": "l", "points": [[70.9, 110.2]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 524.5559999999999, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 523.8919999999998, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 402.46399999999994, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [403.2, 126.81199999999995, 410.102, 133.81199999999995], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [410.1, 127.49199999999998, 524.352, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 148.19200000000004, 524.2759999999996, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 168.89199999999997, 524.3599999999999, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 189.592, 524.3600000000001, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 210.29200000000006, 282.64400000000006, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 257.49199999999996, 111.396, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 257.49199999999996, 523.3720000000002, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 278.192, 523.2960000000003, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 298.89199999999994, 523.0320000000004, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 319.592, 522.5999999999998, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 340.292, 456.168, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [456.1, 339.612, 463.002, 346.612], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [463.0, 340.292, 466.0, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [466.0, 340.292, 470.896, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [470.9, 340.292, 473.9, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 387.49199999999996, 524.4, 399.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 387.49199999999996, 527.5, 399.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 408.192, 524.3240000000002, 420.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 408.192, 527.5, 420.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 428.892, 524.4680000000002, 440.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 428.892, 527.5, 440.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 449.592, 523.8800000000001, 461.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 449.592, 527.5, 461.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 470.292, 524.0240000000001, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 470.292, 527.5, 482.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 490.99199999999996, 524.4439999999997, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 490.99199999999996, 527.5, 502.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 511.692, 524.3599999999999, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 511.692, 527.5, 523.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 532.3919999999999, 524.3000000000002, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 532.3919999999999, 527.5, 544.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 553.092, 523.8560000000001, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 553.092, 527.5, 565.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 573.792, 524.0479999999998, 585.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 594.492, 524.348, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 594.492, 527.5, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 615.192, 260.42, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 662.3919999999999, 111.396, 674.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 662.3919999999999, 523.0840000000002, 674.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 662.3919999999999, 527.5, 674.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 683.092, 522.756, 695.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 683.092, 527.5, 695.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 703.792, 522.9360000000003, 715.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 703.792, 527.5, 715.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 736.6152, 77.4384, 743.0151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 737.076, 80.25, 748.076], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [81.2, 737.86, 85.28, 747.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [85.3, 737.86, 523.1299999999998, 747.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 737.86, 527.0, 747.86], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 750.16, 523.5999999999999, 760.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 750.16, 527.0, 760.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 761.66, 211.73000000000002, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [211.8, 761.66, 220.9, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [220.9, 761.66, 328.93, 771.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 133.03, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [404.3, 723.2, 412.7, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [167.8, 531.1, 176.2, 551.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [448, 341.9, 456.4, 362.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [151.7, 300.5, 160.1, 321.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "21", "marked_content": [], "index": 20, "path_objects": [{"bbox": [70.9, 720.2, 184.3, 720.7], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 121.3]]}, {"type": "l", "points": [[184.3, 121.3]]}, {"type": "l", "points": [[184.3, 121.8]]}, {"type": "l", "points": [[70.9, 121.8]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 522.6120000000002, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 106.79200000000004, 405.07200000000006, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [405.1, 106.11200000000002, 412.002, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [412.0, 106.79200000000004, 422.896, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 524.3760000000002, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 174.69200000000004, 524.0840000000002, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 524.288, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 216.092, 524.5160000000001, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 236.79200000000006, 284.5280000000001, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [284.6, 236.79200000000006, 467.744, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [467.8, 236.79200000000006, 524.32, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 257.49199999999996, 107.012, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [107.0, 257.49199999999996, 523.2440000000004, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 278.192, 523.1839999999997, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 298.89199999999994, 168.536, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [168.6, 298.21200000000005, 175.50199999999998, 305.21200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [175.5, 298.89199999999994, 178.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [178.5, 298.89199999999994, 524.1720000000001, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 319.592, 524.2400000000001, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 340.292, 524.1439999999997, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 340.292, 527.5, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 360.99199999999996, 523.916, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 381.692, 524.0360000000002, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 402.392, 142.60399999999998, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 425.99199999999996, 524.0520000000001, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 425.99199999999996, 527.5, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 446.692, 524.2400000000001, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 446.692, 527.5, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 467.392, 172.10000000000002, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [172.2, 467.392, 522.816, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 467.392, 527.5, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 488.092, 448.3879999999999, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [448.8, 487.412, 455.702, 494.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [455.7, 488.092, 524.376, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 488.092, 527.5, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 508.79200000000003, 523.4480000000001, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 508.79200000000003, 527.5, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 529.492, 152.38400000000001, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [152.5, 528.8119999999999, 159.5, 535.8119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [159.5, 529.492, 524.1679999999999, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 529.492, 527.5, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 550.192, 524.3720000000001, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 550.192, 527.5, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 570.8919999999999, 524.2040000000002, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 570.8919999999999, 527.5, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 591.592, 524.5880000000002, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.592, 527.5, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 612.292, 318.6320000000001, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 659.492, 111.396, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 659.492, 523.3000000000001, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 659.492, 527.5, 671.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 680.192, 523.1160000000001, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 680.192, 527.5, 692.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 724.8544, 76.8348, 730.6544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 724.476, 79.65, 735.476], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 725.26, 132.43, 735.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 737.0544, 76.8348, 742.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 736.6759999999999, 79.65, 747.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 737.4599999999999, 160.53, 747.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 749.4152, 77.4384, 755.8152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 749.876, 80.25, 760.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 750.66, 188.33, 760.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.7544, 76.8348, 768.5544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 762.376, 79.65, 773.376], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.3, 763.16, 232.0, 773.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [232.1, 763.16, 524.2000000000002, 773.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 763.16, 527.0, 773.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 124.33, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [456.3, 723.2, 464.7, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [230.6, 483.9, 239, 504.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [489.4, 353.9, 497.8, 374.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "22", "marked_content": [], "index": 21, "path_objects": [{"bbox": [70.9, 720.9, 184.3, 721.4], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 120.6]]}, {"type": "l", "points": [[184.3, 120.6]]}, {"type": "l", "points": [[184.3, 121.1]]}, {"type": "l", "points": [[70.9, 121.1]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 523.3439999999999, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 106.79200000000004, 457.1160000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [457.1, 106.11200000000002, 464.002, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [464.0, 106.79200000000004, 474.668, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [474.7, 106.79200000000004, 482.596, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 524.112, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 174.69200000000004, 523.904, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 494.23999999999995, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 242.592, 111.396, 254.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 242.592, 522.5680000000001, 254.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 242.592, 527.5, 254.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 263.29200000000003, 522.7920000000001, 275.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 263.29200000000003, 527.5, 275.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 283.99199999999996, 522.8999999999999, 295.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 283.99199999999996, 527.5, 295.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 304.692, 522.7919999999999, 316.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 304.692, 527.5, 316.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 325.392, 522.4920000000002, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 325.392, 527.5, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 346.092, 231.32399999999998, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [231.4, 345.412, 238.4, 352.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [238.4, 346.092, 241.4, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [241.4, 346.092, 249.296, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 393.292, 524.4839999999999, 405.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 393.292, 527.5, 405.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 413.99199999999996, 524.1199999999999, 425.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 413.99199999999996, 527.5, 425.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 434.692, 205.10000000000002, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [205.1, 434.692, 363.15200000000004, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [363.2, 434.692, 524.444, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 434.692, 527.5, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 455.392, 462.788, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [462.8, 455.392, 524.504, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 455.392, 527.5, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 476.092, 134.99599999999998, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [135.0, 476.092, 490.128, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [490.2, 475.412, 497.2, 482.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [497.2, 476.092, 503.5, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 499.692, 111.396, 511.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 499.692, 189.592, 511.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 523.292, 523.3680000000002, 535.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 523.292, 527.5, 535.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 543.992, 241.44000000000003, 555.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [241.4, 543.992, 244.4, 555.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 567.592, 127.656, 579.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 591.192, 523.3439999999999, 603.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.192, 527.5, 603.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 611.8919999999999, 523.0560000000003, 623.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 611.8919999999999, 527.5, 623.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 632.592, 522.936, 644.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.592, 527.5, 644.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 653.292, 523.2599999999999, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 653.292, 527.5, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 673.992, 480.26399999999995, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [480.6, 673.992, 483.92400000000004, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [484.0, 673.992, 523.312, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 673.992, 527.5, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 725.5544, 76.8348, 731.3543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 725.1759999999999, 79.65, 736.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 725.9599999999999, 187.73000000000002, 735.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 737.8152, 77.4384, 744.2152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 738.276, 80.25, 749.276], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 739.06, 156.33, 749.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 751.1544, 76.8348, 756.9544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 750.776, 79.65, 761.776], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.0, 751.56, 84.08, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [84.1, 751.56, 523.3299999999999, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 751.56, 527.0, 761.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 763.56, 522.7300000000001, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 763.56, 527.0, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 304.0, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [304.0, 775.16, 308.08, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [308.1, 775.16, 363.43, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [377.6, 723.2, 386, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [495.1, 634.6, 503.5, 655.3], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [492, 300.5, 500.4, 321.2], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "23", "marked_content": [], "index": 22, "path_objects": [{"bbox": [70.9, 664.4, 184.3, 664.9], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 177.1]]}, {"type": "l", "points": [[184.3, 177.1]]}, {"type": "l", "points": [[184.3, 177.6]]}, {"type": "l", "points": [[70.9, 177.6]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 209.28000000000003, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [209.4, 86.092, 212.4, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [212.4, 86.092, 350.916, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [351.0, 86.092, 354.324, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [354.3, 86.092, 523.272, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 106.79200000000004, 378.4200000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [378.4, 106.11200000000002, 385.4, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [385.4, 106.79200000000004, 393.428, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [393.4, 106.79200000000004, 396.4, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 524.412, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 174.69200000000004, 524.0240000000001, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 495.89600000000013, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [495.9, 194.71200000000005, 502.9, 201.71200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [502.9, 195.39199999999997, 524.416, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 216.092, 524.2399999999998, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 236.79200000000006, 524.312, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 257.49199999999996, 524.1560000000001, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 278.192, 524.4919999999997, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 298.89199999999994, 524.252, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 319.592, 524.06, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 340.292, 524.4920000000001, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 340.292, 527.5, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 360.99199999999996, 523.9999999999998, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 381.692, 125.39600000000002, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [125.4, 381.692, 282.672, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [282.7, 381.692, 465.61600000000004, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 405.292, 524.2200000000001, 417.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 405.292, 527.5, 417.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 425.99199999999996, 524.012, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 425.99199999999996, 527.5, 437.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 446.692, 524.408, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 446.692, 527.5, 458.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 467.392, 121.196, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [121.2, 467.392, 288.084, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [288.3, 467.392, 524.028, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 467.392, 527.4, 479.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 488.092, 523.8559999999997, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 488.092, 527.5, 500.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 508.79200000000003, 524.5640000000003, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 508.79200000000003, 527.5, 520.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 529.492, 492.48799999999994, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [492.8, 528.8119999999999, 499.702, 535.8119999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [499.7, 529.492, 524.408, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 529.492, 527.5, 541.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 550.192, 523.6159999999999, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 550.192, 527.5, 562.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 570.8919999999999, 524.456, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 570.8919999999999, 527.5, 582.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 591.592, 524.5520000000002, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 591.592, 527.5, 603.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 612.292, 524.4200000000001, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 612.292, 527.5, 624.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 669.0544, 76.8348, 674.8543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 668.6759999999999, 79.65, 679.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 669.4599999999999, 132.43, 679.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 681.2544, 76.8348, 687.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 680.876, 79.65, 691.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.9, 681.66, 524.3000000000001, 691.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 681.66, 527.0, 691.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 693.66, 524.0000000000002, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 693.66, 527.0, 703.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 705.16, 524.3900000000002, 715.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 705.16, 527.0, 715.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 716.76, 524.0000000000002, 726.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 716.76, 527.0, 726.76], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 728.26, 345.7000000000001, 738.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [345.7, 728.26, 453.13, 738.26], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 739.6544, 76.8348, 745.4544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 739.276, 79.65, 750.276], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [81.0, 740.06, 523.8299999999998, 750.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 740.06, 527.0, 750.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 752.06, 524.1999999999999, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 752.06, 527.0, 762.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 763.56, 523.7300000000001, 773.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 775.16, 276.0, 785.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [480.6, 551.8, 489, 572.5], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [390.6, 333.2, 399, 353.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "24", "marked_content": [], "index": 23, "path_objects": [{"bbox": [70.9, 754.9, 184.3, 755.4], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 86.6]]}, {"type": "l", "points": [[184.3, 86.6]]}, {"type": "l", "points": [[184.3, 87.1]]}, {"type": "l", "points": [[70.9, 87.1]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 524.1440000000003, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 310.0520000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 111.396, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 153.992, 523.324, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 174.69200000000004, 522.9720000000002, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 195.39199999999997, 523.1999999999999, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 216.092, 523.176, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 236.79200000000006, 523.0680000000001, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 257.49199999999996, 522.8520000000002, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 278.192, 481.30800000000016, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [481.4, 277.512, 488.30199999999996, 284.512], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [488.3, 278.192, 499.196, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 325.392, 524.1120000000001, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 325.392, 527.5, 337.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 346.092, 523.6759999999999, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 346.092, 527.5, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 366.792, 524.5640000000001, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 366.792, 527.5, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 387.49199999999996, 383.54, 399.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 434.692, 111.396, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 434.692, 522.7840000000001, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 434.692, 527.5, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 455.392, 522.9000000000003, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 455.392, 527.5, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 476.092, 522.9480000000001, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 476.092, 527.5, 488.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 496.792, 391.39200000000005, 508.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [391.4, 496.112, 398.4, 503.112], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [398.4, 496.792, 401.4, 508.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [401.4, 496.792, 409.296, 508.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 543.992, 524.124, 555.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 543.992, 527.5, 555.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 564.692, 524.516, 576.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 564.692, 527.5, 576.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 585.3919999999999, 523.88, 597.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 585.3919999999999, 527.5, 597.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 606.092, 158.62400000000002, 618.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 653.292, 111.396, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 653.292, 523.1920000000001, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 653.292, 527.5, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 673.992, 522.9960000000002, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 673.992, 527.5, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 694.692, 522.8160000000003, 706.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 694.692, 527.5, 706.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 715.3919999999999, 522.9719999999999, 727.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 715.3919999999999, 527.5, 727.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 736.092, 522.9960000000001, 748.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 736.092, 527.5, 748.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 759.7152, 77.4384, 766.1152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 760.1759999999999, 80.25, 771.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 760.9599999999999, 211.63000000000002, 770.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 773.1152, 77.4384, 779.5151999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 773.576, 80.25, 784.576], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 774.36, 156.33, 784.36], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [389.3, 599, 397.7, 619.7], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [427.5, 531.1, 435.9, 551.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [263.4, 448.3, 271.8, 469], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [228.3, 406.9, 236.7, 427.6], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "25", "marked_content": [], "index": 24, "path_objects": [{"bbox": [70.9, 662.5, 184.3, 663.0], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 179.0]]}, {"type": "l", "points": [[184.3, 179.0]]}, {"type": "l", "points": [[184.3, 179.5]]}, {"type": "l", "points": [[70.9, 179.5]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 522.9360000000001, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 106.79200000000004, 523.3080000000001, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 127.49199999999998, 522.6600000000003, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 127.49199999999998, 527.5, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 148.19200000000004, 523.3679999999999, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 148.19200000000004, 527.5, 160.19200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 168.89199999999997, 523.3560000000001, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 168.89199999999997, 527.5, 180.89199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 189.592, 523.1040000000003, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 189.592, 527.5, 201.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 210.29200000000006, 523.0200000000002, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 210.29200000000006, 527.5, 222.29200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 230.992, 390.10800000000006, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [390.1, 230.31199999999995, 397.002, 237.31199999999995], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [397.0, 230.992, 407.896, 242.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 278.192, 523.9319999999999, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 298.89199999999994, 428.0239999999999, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [428.3, 298.21200000000005, 435.202, 305.21200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [435.2, 298.89199999999994, 524.4440000000001, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 319.592, 523.88, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 340.292, 524.3600000000001, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 340.292, 527.5, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 360.99199999999996, 524.0000000000002, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 381.692, 264.17600000000004, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [264.2, 381.012, 271.2, 388.012], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [271.2, 381.692, 524.352, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 381.692, 527.5, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 402.392, 524.1199999999999, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 402.392, 527.5, 414.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 423.092, 168.8, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [169.0, 423.092, 229.012, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [229.1, 422.412, 236.00199999999998, 429.412], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [236.0, 423.092, 523.9999999999999, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 423.092, 527.5, 435.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 443.792, 523.9519999999998, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 443.792, 527.5, 455.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 464.49199999999996, 359.9240000000001, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [360.1, 464.49199999999996, 420.40000000000003, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.4, 464.49199999999996, 474.904, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [475.1, 464.49199999999996, 524.48, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 464.49199999999996, 527.5, 476.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 485.192, 524.1680000000001, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 485.192, 527.5, 497.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 505.89199999999994, 523.9879999999998, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 505.89199999999994, 527.5, 517.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 526.592, 524.2040000000002, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 526.592, 527.5, 538.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 547.292, 227.828, 559.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 594.492, 111.396, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [111.4, 594.492, 522.7720000000002, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 594.492, 527.5, 606.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 615.192, 522.8280000000002, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 615.192, 527.5, 627.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 667.2152, 77.4384, 673.6152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 667.6759999999999, 80.25, 678.6759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.2, 668.4599999999999, 156.33, 678.4599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 680.5544, 76.8348, 686.3543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 680.1759999999999, 83.95100000000001, 691.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [84.0, 680.9599999999999, 279.58000000000004, 690.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [280.0, 680.9599999999999, 522.9300000000001, 690.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 680.9599999999999, 526.9, 690.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 692.9599999999999, 523.1899999999998, 702.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 692.9599999999999, 527.0, 702.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 704.56, 522.8299999999998, 714.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 704.56, 527.0, 714.56], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 716.06, 373.29, 726.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [373.4, 716.06, 380.9, 726.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [380.9, 716.06, 524.3, 726.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.4, 716.06, 526.9, 726.06], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 727.66, 384.13, 737.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [384.2, 727.66, 524.43, 737.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 727.66, 527.0, 737.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 739.16, 246.29999999999998, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [246.3, 739.16, 344.93, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [344.9, 739.16, 364.29999999999995, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [364.3, 739.16, 454.03000000000003, 749.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 750.5544, 76.8348, 756.3543999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 750.1759999999999, 79.65, 761.1759999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.1, 750.9599999999999, 84.17999999999999, 760.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [84.2, 750.9599999999999, 523.4299999999998, 760.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 750.9599999999999, 527.0, 760.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 762.9599999999999, 393.09999999999985, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [393.1, 762.9599999999999, 399.70000000000005, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [399.7, 762.9599999999999, 507.83, 772.9599999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 773.876, 79.65, 784.876], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.7, 774.66, 156.33, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [{"subtype": "Link", "rect": [483.9, 723.2, 492.3, 743.9], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}, {"subtype": "Link", "rect": [209.1, 531.1, 217.5, 551.8], "properties": {"type": "/Annot", "subtype": "/Link", "border": [{}, {}, {}], "rect": [{}, {}, {}, {}], "dest": [{}, {}, {}, {}, {}]}}], "dimensions": [595, 842], "page_number": "26", "marked_content": [], "index": 25, "path_objects": [{"bbox": [70.9, 756.2, 184.3, 756.7], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "segments": [{"type": "m", "points": [[70.9, 85.3]]}, {"type": "l", "points": [[184.3, 85.3]]}, {"type": "l", "points": [[184.3, 85.8]]}, {"type": "l", "points": [[70.9, 85.8]]}, {"type": "h", "points": []}]}], "rotation": 0, "text_objects": [{"bbox": [106.5, 86.092, 523.296, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 106.79200000000004, 484.716, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [484.7, 106.11200000000002, 491.602, 113.11200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [491.6, 106.79200000000004, 499.49600000000004, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [106.5, 153.992, 523.8360000000002, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 153.992, 527.5, 165.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 174.69200000000004, 302.94800000000015, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [303.0, 174.69200000000004, 524.3520000000001, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 174.69200000000004, 527.5, 186.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 91.7, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [91.7, 195.39199999999997, 253.12400000000002, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [253.1, 195.39199999999997, 524.4440000000001, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 216.092, 524.4440000000002, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 236.79200000000006, 524.4680000000002, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 257.49199999999996, 222.94399999999996, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [223.0, 257.49199999999996, 524.152, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 257.49199999999996, 527.5, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 278.192, 524.4800000000001, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 278.192, 527.5, 290.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 298.89199999999994, 209.864, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [209.9, 298.21200000000005, 216.9, 305.21200000000005], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [216.9, 298.89199999999994, 524.1480000000001, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 298.89199999999994, 527.5, 310.89199999999994], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 319.592, 467.32399999999984, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [467.8, 319.592, 523.216, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 319.592, 527.5, 331.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 340.292, 125.50399999999999, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [125.7, 340.292, 174.18, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [174.2, 340.292, 524.3480000000001, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 340.292, 527.5, 352.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 360.99199999999996, 524.6600000000002, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 360.99199999999996, 527.5, 372.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 381.692, 252.32000000000005, 393.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 760.9152, 77.4384, 767.3152], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [77.5, 762.16, 80.0, 772.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [80.0, 762.16, 132.73000000000002, 772.16], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 774.2544, 76.8348, 780.0544], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [76.9, 774.66, 79.4, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [79.4, 774.66, 154.13000000000002, 784.66], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [], "dimensions": [595, 842], "page_number": "27", "marked_content": [], "index": 26, "path_objects": [], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 138.296, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 109.69200000000002, 524.2520000000001, 121.69200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 109.69200000000002, 527.5, 121.69200000000002], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 130.39199999999997, 524.3719999999998, 142.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 130.39199999999997, 527.5, 142.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 151.092, 524.2999999999998, 163.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 151.092, 527.5, 163.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 171.79200000000006, 369.02, 183.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 524.0720000000001, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 195.39199999999997, 527.5, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 216.092, 524.0720000000001, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 216.092, 527.5, 228.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 236.79200000000006, 524.348, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 236.79200000000006, 527.5, 248.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 257.49199999999996, 119.20400000000001, 269.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 281.092, 524.4319999999999, 293.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 281.092, 527.5, 293.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 301.79200000000003, 524.4320000000001, 313.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 301.79200000000003, 527.5, 313.79200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 322.49199999999996, 293.01200000000006, 334.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 346.092, 397.856, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [398.2, 346.092, 401.2, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [401.2, 346.092, 524.332, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 346.092, 527.5, 358.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 366.792, 204.032, 378.792], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 390.392, 408.21199999999993, 402.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [408.7, 390.392, 411.7, 402.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [411.7, 390.392, 524.296, 402.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 390.392, 527.5, 402.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 411.092, 149.92399999999998, 423.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 434.692, 524.4679999999998, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 434.692, 527.5, 446.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 455.392, 336.53600000000006, 467.392], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 478.99199999999996, 417.37999999999994, 490.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [417.5, 478.99199999999996, 420.5, 490.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.5, 478.99199999999996, 524.408, 490.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 478.99199999999996, 527.5, 490.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 499.692, 154.904, 511.692], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 523.292, 524.1320000000002, 535.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 523.292, 527.5, 535.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 543.992, 119.20400000000001, 555.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 567.592, 524.4560000000001, 579.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 567.592, 527.5, 579.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 588.292, 359.01200000000006, 600.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [359.0, 588.292, 362.0, 600.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 611.8919999999999, 524.048, 623.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 611.8919999999999, 527.5, 623.8919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 632.592, 524.312, 644.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 632.592, 527.5, 644.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 653.292, 524.3239999999996, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 653.292, 527.5, 665.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 673.992, 260.92400000000004, 685.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 697.592, 524.1919999999999, 709.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 697.592, 527.5, 709.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 718.292, 360.212, 730.292], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}, {"annotations": [], "dimensions": [595, 842], "page_number": "28", "marked_content": [], "index": 27, "path_objects": [], "rotation": 0, "text_objects": [{"bbox": [71.0, 86.092, 523.8680000000002, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 86.092, 527.5, 98.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 106.79200000000004, 523.9639999999999, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 106.79200000000004, 527.5, 118.79200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 127.49199999999998, 119.20400000000001, 139.492], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 151.092, 524.2880000000002, 163.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 151.092, 527.5, 163.092], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 171.79200000000006, 122.504, 183.79200000000006], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 195.39199999999997, 514.508, 207.39199999999997], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 218.992, 524.5040000000001, 230.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 218.992, 527.5, 230.992], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 239.69200000000004, 448.86800000000005, 251.69200000000004], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 263.29200000000003, 524.0840000000003, 275.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 263.29200000000003, 527.5, 275.29200000000003], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 283.99199999999996, 356.0240000000001, 295.99199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 307.592, 315.6200000000001, 319.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [315.7, 307.592, 318.7, 319.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [318.7, 307.592, 497.512, 319.592], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 331.192, 524.4680000000002, 343.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 331.192, 527.5, 343.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 351.892, 451.3159999999999, 363.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 375.49199999999996, 524.1320000000001, 387.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 375.49199999999996, 527.5, 387.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 396.192, 524.1319999999998, 408.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [524.5, 396.192, 527.5, 408.192], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 416.892, 207.22400000000002, 428.892], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 440.49199999999996, 459.884, 452.49199999999996], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [420.9, 794.3919999999999, 524.496, 806.3919999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0.50196, 0.50196, 0.50196], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}, {"bbox": [71.0, 792.2479999999999, 87.665, 803.2479999999999], "graphic_state": {"linewidth": 0.1, "linecap": 0, "linejoin": 0, "miterlimit": 10, "dash": [[], 0], "intent": "/RelativeColorimetric", "flatness": 1, "scolor": [[0], null], "scs": ["DeviceGray", 1, null], "ncolor": [[0, 0, 0], null], "ncs": ["DeviceRGB", 3, null]}, "marked_content": {"tag": "", "properties": {}, "mcid": null}}], "xobjects": []}]} diff --git a/tests/string_test.py b/tests/string_test.py index 5c49665..b190ffd 100644 --- a/tests/string_test.py +++ b/tests/string_test.py @@ -32,6 +32,15 @@ def test_safe_decode_with_detected_encoding() -> None: assert safe_decode(byte_data) == text +def test_safe_decode_with_all_encodings_failing() -> None: + # Create invalid UTF-8 data that will fail all encoding attempts except latin-1 + invalid_bytes = bytes([0xFF, 0xFE, 0xFD]) + result = safe_decode(invalid_bytes, encoding="invalid-encoding") + assert result is not None # Should fall back to latin-1 + assert isinstance(result, str) + assert len(result) == 3 # Should decode each byte to a character + + def test_safe_decode_with_invalid_encoding() -> None: # Create bytes that will fail UTF-8 and charset detection byte_data = bytes([0xFF, 0xFE, 0xFD]) diff --git a/uv.lock b/uv.lock index 245f4b5..cf69e61 100644 --- a/uv.lock +++ b/uv.lock @@ -307,13 +307,14 @@ wheels = [ [[package]] name = "kreuzberg" -version = "2.0.1" +version = "2.1.0" source = { virtual = "." } dependencies = [ { name = "anyio" }, { name = "charset-normalizer" }, { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, { name = "html-to-markdown" }, + { name = "playa-pdf" }, { name = "pypdfium2" }, { name = "python-calamine" }, { name = "python-pptx" }, @@ -339,6 +340,7 @@ requires-dist = [ { name = "charset-normalizer", specifier = ">=3.4.1" }, { name = "exceptiongroup", marker = "python_full_version < '3.11'", specifier = ">=1.2.2" }, { name = "html-to-markdown", specifier = ">=1.2.0" }, + { name = "playa-pdf", git = "https://github.com/dhdaines/playa?rev=main" }, { name = "pypdfium2", specifier = ">=4.30.1" }, { name = "python-calamine", specifier = ">=0.3.1" }, { name = "python-pptx", specifier = ">=1.0.2" }, @@ -633,6 +635,11 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb", size = 18439 }, ] +[[package]] +name = "playa-pdf" +version = "0.3.1.dev2+gee37020" +source = { git = "https://github.com/dhdaines/playa?rev=main#ee37020ca4d1a37bb1f94db82b531474a5096dd1" } + [[package]] name = "pluggy" version = "1.5.0"