#
tokens: 40195/50000 2/73 files (page 5/6)
lines: off (toggle) GitHub
raw markdown copy
This is page 5 of 6. Use http://codebase.md/1yhy/figma-context-mcp?page={x} to view the full context.

# Directory Structure

```
├── .editorconfig
├── .env.example
├── .github
│   ├── ISSUE_TEMPLATE
│   │   ├── bug_report.yml
│   │   └── feature_request.yml
│   ├── PULL_REQUEST_TEMPLATE.md
│   └── workflows
│       └── ci.yml
├── .gitignore
├── .husky
│   ├── commit-msg
│   └── pre-commit
├── .lintstagedrc.json
├── .nvmrc
├── .prettierrc
├── CHANGELOG.md
├── commitlint.config.js
├── CONTRIBUTING.md
├── Dockerfile
├── docs
│   ├── en
│   │   ├── absolute-to-relative-research.md
│   │   ├── architecture.md
│   │   ├── cache-architecture.md
│   │   ├── grid-layout-research.md
│   │   ├── icon-detection.md
│   │   ├── layout-detection-research.md
│   │   └── layout-detection.md
│   └── zh-CN
│       ├── absolute-to-relative-research.md
│       ├── architecture.md
│       ├── cache-architecture.md
│       ├── grid-layout-research.md
│       ├── icon-detection.md
│       ├── layout-detection-research.md
│       ├── layout-detection.md
│       └── TODO-feature-enhancements.md
├── eslint.config.js
├── LICENSE
├── package.json
├── pnpm-lock.yaml
├── README.md
├── README.zh-CN.md
├── scripts
│   ├── fetch-test-data.ts
│   └── optimize-figma-json.ts
├── smithery.yaml
├── src
│   ├── algorithms
│   │   ├── icon
│   │   │   ├── detector.ts
│   │   │   └── index.ts
│   │   └── layout
│   │       ├── detector.ts
│   │       ├── index.ts
│   │       ├── optimizer.ts
│   │       └── spatial.ts
│   ├── config.ts
│   ├── core
│   │   ├── effects.ts
│   │   ├── layout.ts
│   │   ├── parser.ts
│   │   └── style.ts
│   ├── index.ts
│   ├── prompts
│   │   ├── design-to-code.ts
│   │   └── index.ts
│   ├── resources
│   │   ├── figma-resources.ts
│   │   └── index.ts
│   ├── server.ts
│   ├── services
│   │   ├── cache
│   │   │   ├── cache-manager.ts
│   │   │   ├── disk-cache.ts
│   │   │   ├── index.ts
│   │   │   ├── lru-cache.ts
│   │   │   └── types.ts
│   │   ├── cache.ts
│   │   ├── figma.ts
│   │   └── simplify-node-response.ts
│   ├── types
│   │   ├── figma.ts
│   │   ├── index.ts
│   │   └── simplified.ts
│   └── utils
│       ├── color.ts
│       ├── css.ts
│       ├── file.ts
│       └── validation.ts
├── tests
│   ├── fixtures
│   │   ├── expected
│   │   │   ├── node-240-32163-optimized.json
│   │   │   ├── node-402-34955-optimized.json
│   │   │   └── real-node-data-optimized.json
│   │   └── figma-data
│   │       ├── node-240-32163.json
│   │       ├── node-402-34955.json
│   │       └── real-node-data.json
│   ├── integration
│   │   ├── __snapshots__
│   │   │   ├── layout-optimization.test.ts.snap
│   │   │   └── output-quality.test.ts.snap
│   │   ├── layout-optimization.test.ts
│   │   ├── output-quality.test.ts
│   │   └── parser.test.ts
│   ├── unit
│   │   ├── algorithms
│   │   │   ├── icon-optimization.test.ts
│   │   │   ├── icon.test.ts
│   │   │   └── layout.test.ts
│   │   ├── resources
│   │   │   └── figma-resources.test.ts
│   │   └── services
│   │       └── cache.test.ts
│   └── utils
│       ├── preview-generator.ts
│       ├── preview.ts
│       ├── run-simplification.ts
│       └── viewer.html
├── tsconfig.json
├── tsup.config.ts
└── vitest.config.ts
```

# Files

--------------------------------------------------------------------------------
/tests/fixtures/figma-data/real-node-data.json:
--------------------------------------------------------------------------------

```json
{
  "name": "Vigilkids产品站",
  "lastModified": "2025-12-05T09:47:37Z",
  "thumbnailUrl": "https://s3-alpha.figma.com/thumbnails/9a38a8e4-5a00-4c07-a053-e71c7103a167?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWCXJW6HYPC%2F20251204%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20251204T000000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=dab594780137ae82433ff7205024276c20a3abb73855f2e393c7e6373086b892",
  "version": "2294025171571219775",
  "role": "owner",
  "editorType": "figma",
  "linkAccess": "inherit",
  "nodes": {
    "2:674": {
      "document": {
        "id": "2:674",
        "name": "Group 1410104851",
        "type": "GROUP",
        "scrollBehavior": "SCROLLS",
        "children": [
          {
            "id": "2:675",
            "name": "Rectangle 34",
            "type": "RECTANGLE",
            "locked": true,
            "scrollBehavior": "SCROLLS",
            "blendMode": "PASS_THROUGH",
            "fills": [
              {
                "blendMode": "NORMAL",
                "type": "SOLID",
                "color": {
                  "r": 1,
                  "g": 1,
                  "b": 1,
                  "a": 1
                }
              }
            ],
            "strokes": [],
            "strokeWeight": 1,
            "strokeAlign": "INSIDE",
            "cornerRadius": 12,
            "cornerSmoothing": 0,
            "absoluteBoundingBox": {
              "x": 406,
              "y": 422,
              "width": 1580,
              "height": 895
            },
            "absoluteRenderBounds": {
              "x": 406,
              "y": 422,
              "width": 1580,
              "height": 895
            },
            "constraints": {
              "vertical": "TOP",
              "horizontal": "LEFT"
            },
            "effects": [],
            "interactions": []
          },
          {
            "id": "2:676",
            "name": "Group 1410104850",
            "type": "GROUP",
            "scrollBehavior": "SCROLLS",
            "children": [
              {
                "id": "2:677",
                "name": "Group 1410104480",
                "type": "GROUP",
                "scrollBehavior": "SCROLLS",
                "children": [
                  {
                    "id": "2:678",
                    "name": "添加自定义关键词,当检测到关键词出现时您将接收警报",
                    "type": "TEXT",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.20000000298023224,
                          "g": 0.20000000298023224,
                          "b": 0.20000000298023224,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "OUTSIDE",
                    "absoluteBoundingBox": {
                      "x": 1021,
                      "y": 822,
                      "width": 350,
                      "height": 20
                    },
                    "absoluteRenderBounds": {
                      "x": 1021.5040283203125,
                      "y": 825.3939819335938,
                      "width": 349.033935546875,
                      "height": 14.15399169921875
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "characters": "添加自定义关键词,当检测到关键词出现时您将接收警报",
                    "characterStyleOverrides": [],
                    "styleOverrideTable": {},
                    "lineTypes": ["NONE"],
                    "lineIndentations": [0],
                    "style": {
                      "fontFamily": "PingFang SC",
                      "fontPostScriptName": "PingFangSC-Medium",
                      "fontStyle": "Medium",
                      "fontWeight": 500,
                      "textAutoResize": "WIDTH_AND_HEIGHT",
                      "fontSize": 14,
                      "textAlignHorizontal": "CENTER",
                      "textAlignVertical": "CENTER",
                      "letterSpacing": 0,
                      "lineHeightPx": 19.600000381469727,
                      "lineHeightPercent": 100,
                      "lineHeightUnit": "INTRINSIC_%"
                    },
                    "layoutVersion": 4,
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "2:679",
                    "name": "Group 1410104479",
                    "type": "GROUP",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "2:680",
                        "name": "Group 1410086131",
                        "type": "GROUP",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "2:681",
                            "name": "Rectangle 34625783",
                            "type": "RECTANGLE",
                            "scrollBehavior": "SCROLLS",
                            "boundVariables": {
                              "fills": [
                                {
                                  "type": "VARIABLE_ALIAS",
                                  "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                                }
                              ]
                            },
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.1411764770746231,
                                  "g": 0.7803921699523926,
                                  "b": 0.5647059082984924,
                                  "a": 1
                                },
                                "boundVariables": {
                                  "color": {
                                    "type": "VARIABLE_ALIAS",
                                    "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                                  }
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "INSIDE",
                            "cornerRadius": 10,
                            "cornerSmoothing": 0,
                            "absoluteBoundingBox": {
                              "x": 1076,
                              "y": 872,
                              "width": 240,
                              "height": 44
                            },
                            "absoluteRenderBounds": {
                              "x": 1076,
                              "y": 872,
                              "width": 240,
                              "height": 44
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "2:682",
                            "name": "Group 1410104509",
                            "type": "GROUP",
                            "scrollBehavior": "SCROLLS",
                            "children": [
                              {
                                "id": "2:683",
                                "name": "AI生成关键词",
                                "type": "TEXT",
                                "scrollBehavior": "SCROLLS",
                                "blendMode": "PASS_THROUGH",
                                "fills": [
                                  {
                                    "blendMode": "NORMAL",
                                    "type": "SOLID",
                                    "color": {
                                      "r": 1,
                                      "g": 1,
                                      "b": 1,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 1,
                                "strokeAlign": "OUTSIDE",
                                "absoluteBoundingBox": {
                                  "x": 1170,
                                  "y": 886,
                                  "width": 84,
                                  "height": 16
                                },
                                "absoluteRenderBounds": {
                                  "x": 1170.2939453125,
                                  "y": 886.9739990234375,
                                  "width": 82.4940185546875,
                                  "height": 13.4539794921875
                                },
                                "constraints": {
                                  "vertical": "TOP",
                                  "horizontal": "LEFT"
                                },
                                "characters": "AI生成关键词",
                                "characterStyleOverrides": [],
                                "styleOverrideTable": {},
                                "lineTypes": ["NONE"],
                                "lineIndentations": [0],
                                "style": {
                                  "fontFamily": "Roboto",
                                  "fontPostScriptName": "Roboto-Bold",
                                  "fontStyle": "Bold",
                                  "fontWeight": 700,
                                  "textCase": "UPPER",
                                  "textAutoResize": "WIDTH_AND_HEIGHT",
                                  "fontSize": 14,
                                  "textAlignHorizontal": "CENTER",
                                  "textAlignVertical": "CENTER",
                                  "letterSpacing": 0,
                                  "lineHeightPx": 16.40625,
                                  "lineHeightPercent": 100,
                                  "lineHeightUnit": "INTRINSIC_%"
                                },
                                "layoutVersion": 4,
                                "effects": [],
                                "interactions": []
                              },
                              {
                                "id": "2:684",
                                "name": "Frame",
                                "type": "FRAME",
                                "scrollBehavior": "SCROLLS",
                                "children": [
                                  {
                                    "id": "2:685",
                                    "name": "Vector",
                                    "type": "VECTOR",
                                    "scrollBehavior": "SCROLLS",
                                    "blendMode": "PASS_THROUGH",
                                    "fills": [
                                      {
                                        "blendMode": "NORMAL",
                                        "type": "SOLID",
                                        "color": {
                                          "r": 1,
                                          "g": 1,
                                          "b": 1,
                                          "a": 1
                                        }
                                      }
                                    ],
                                    "strokes": [],
                                    "strokeWeight": 0.1953125,
                                    "strokeAlign": "INSIDE",
                                    "absoluteBoundingBox": {
                                      "x": 1139.833740234375,
                                      "y": 884.83251953125,
                                      "width": 18.333126068115234,
                                      "height": 18.334999084472656
                                    },
                                    "absoluteRenderBounds": {
                                      "x": 1139.833740234375,
                                      "y": 884.83251953125,
                                      "width": 18.3331298828125,
                                      "height": 18.33502197265625
                                    },
                                    "constraints": {
                                      "vertical": "SCALE",
                                      "horizontal": "SCALE"
                                    },
                                    "effects": [],
                                    "interactions": []
                                  }
                                ],
                                "blendMode": "PASS_THROUGH",
                                "clipsContent": true,
                                "background": [
                                  {
                                    "blendMode": "NORMAL",
                                    "visible": false,
                                    "type": "SOLID",
                                    "color": {
                                      "r": 1,
                                      "g": 1,
                                      "b": 1,
                                      "a": 1
                                    }
                                  }
                                ],
                                "fills": [
                                  {
                                    "blendMode": "NORMAL",
                                    "visible": false,
                                    "type": "SOLID",
                                    "color": {
                                      "r": 1,
                                      "g": 1,
                                      "b": 1,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 1,
                                "strokeAlign": "INSIDE",
                                "backgroundColor": {
                                  "r": 0,
                                  "g": 0,
                                  "b": 0,
                                  "a": 0
                                },
                                "absoluteBoundingBox": {
                                  "x": 1139,
                                  "y": 884,
                                  "width": 20,
                                  "height": 20
                                },
                                "absoluteRenderBounds": {
                                  "x": 1139,
                                  "y": 884,
                                  "width": 20,
                                  "height": 20
                                },
                                "constraints": {
                                  "vertical": "TOP",
                                  "horizontal": "LEFT"
                                },
                                "effects": [],
                                "interactions": []
                              }
                            ],
                            "blendMode": "PASS_THROUGH",
                            "clipsContent": false,
                            "background": [],
                            "fills": [],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "INSIDE",
                            "backgroundColor": {
                              "r": 0,
                              "g": 0,
                              "b": 0,
                              "a": 0
                            },
                            "absoluteBoundingBox": {
                              "x": 1139,
                              "y": 884,
                              "width": 115,
                              "height": 20
                            },
                            "absoluteRenderBounds": {
                              "x": 1139,
                              "y": 884,
                              "width": 115,
                              "height": 20
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "rectangleCornerRadii": [0, 0, 0, 0],
                        "cornerSmoothing": 0,
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 1076,
                          "y": 872,
                          "width": 240,
                          "height": 44
                        },
                        "absoluteRenderBounds": {
                          "x": 1076,
                          "y": 872,
                          "width": 240,
                          "height": 44
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "CENTER"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:686",
                        "name": "Group 1410104451",
                        "type": "GROUP",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "2:687",
                            "name": "Rectangle 34625783",
                            "type": "RECTANGLE",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.7680059671401978,
                                  "g": 0.7680059671401978,
                                  "b": 0.7680059671401978,
                                  "a": 1
                                }
                              }
                            ],
                            "strokeWeight": 0,
                            "strokeAlign": "INSIDE",
                            "cornerRadius": 10,
                            "cornerSmoothing": 0,
                            "absoluteBoundingBox": {
                              "x": 1076,
                              "y": 926,
                              "width": 240,
                              "height": 44
                            },
                            "absoluteRenderBounds": {
                              "x": 1076,
                              "y": 926,
                              "width": 240,
                              "height": 44
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "2:688",
                            "name": "添加自定义关键词",
                            "type": "TEXT",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.20000000298023224,
                                  "g": 0.20000000298023224,
                                  "b": 0.20000000298023224,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "OUTSIDE",
                            "absoluteBoundingBox": {
                              "x": 1123.594970703125,
                              "y": 940,
                              "width": 145.82278442382812,
                              "height": 16
                            },
                            "absoluteRenderBounds": {
                              "x": 1140.8983154296875,
                              "y": 941.0579833984375,
                              "width": 110.64208984375,
                              "height": 13.342041015625
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "characters": "添加自定义关键词",
                            "characterStyleOverrides": [],
                            "styleOverrideTable": {},
                            "lineTypes": ["NONE"],
                            "lineIndentations": [0],
                            "style": {
                              "fontFamily": "Roboto",
                              "fontPostScriptName": "Roboto-Bold",
                              "fontStyle": "Bold",
                              "fontWeight": 700,
                              "textCase": "UPPER",
                              "textAutoResize": "HEIGHT",
                              "fontSize": 14,
                              "textAlignHorizontal": "CENTER",
                              "textAlignVertical": "CENTER",
                              "letterSpacing": 0,
                              "lineHeightPx": 16.40625,
                              "lineHeightPercent": 100,
                              "lineHeightUnit": "INTRINSIC_%"
                            },
                            "layoutVersion": 4,
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "cornerRadius": 10,
                        "cornerSmoothing": 0,
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 1076,
                          "y": 926,
                          "width": 240,
                          "height": 44
                        },
                        "absoluteRenderBounds": {
                          "x": 1076,
                          "y": 926,
                          "width": 240,
                          "height": 44
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "exportSettings": [
                          {
                            "suffix": "",
                            "format": "PNG",
                            "constraint": {
                              "type": "SCALE",
                              "value": 1
                            }
                          }
                        ],
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "rectangleCornerRadii": [0, 0, 0, 0],
                    "cornerSmoothing": 0,
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 1076,
                      "y": 872,
                      "width": 240,
                      "height": 98
                    },
                    "absoluteRenderBounds": {
                      "x": 1076,
                      "y": 872,
                      "width": 240,
                      "height": 98
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "rectangleCornerRadii": [0, 0, 0, 0],
                "cornerSmoothing": 0,
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 1021,
                  "y": 822,
                  "width": 350,
                  "height": 148
                },
                "absoluteRenderBounds": {
                  "x": 1021,
                  "y": 822,
                  "width": 350,
                  "height": 148
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "2:689",
                "name": "Group 1410104849",
                "type": "GROUP",
                "scrollBehavior": "SCROLLS",
                "children": [
                  {
                    "id": "2:690",
                    "name": "Rectangle 34626114",
                    "type": "RECTANGLE",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "opacity": 0,
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1.100000023841858,
                    "strokeAlign": "INSIDE",
                    "absoluteBoundingBox": {
                      "x": 1086,
                      "y": 654,
                      "width": 220,
                      "height": 138
                    },
                    "absoluteRenderBounds": null,
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "2:691",
                    "name": "Group 1410104848",
                    "type": "GROUP",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "2:692",
                        "name": "Ellipse 2571",
                        "type": "ELLIPSE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [],
                        "strokes": [
                          {
                            "opacity": 0.10000000149011612,
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.1411764770746231,
                              "g": 0.7803921699523926,
                              "b": 0.5647059082984924,
                              "a": 1
                            }
                          }
                        ],
                        "strokeWeight": 1.9917323589324951,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 1113.2984619140625,
                          "y": 765.6846313476562,
                          "width": 10.954526901245117,
                          "height": 10.9071044921875
                        },
                        "absoluteRenderBounds": {
                          "x": 1113.2984619140625,
                          "y": 765.6846313476562,
                          "width": 10.9544677734375,
                          "height": 10.9071044921875
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "arcData": {
                          "startingAngle": 0,
                          "endingAngle": 6.2831854820251465,
                          "innerRadius": 0
                        },
                        "interactions": []
                      },
                      {
                        "id": "2:693",
                        "name": "Rectangle 34626109",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "GRADIENT_LINEAR",
                            "gradientHandlePositions": [
                              {
                                "x": 0.0657894648366455,
                                "y": 7.999539142211631e-9
                              },
                              {
                                "x": 0.7894736608539367,
                                "y": 0.999999973948599
                              },
                              {
                                "x": -0.4342105609220982,
                                "y": 0.3009599985319522
                              }
                            ],
                            "gradientStops": [
                              {
                                "color": {
                                  "r": 0.29140377044677734,
                                  "g": 0.942671537399292,
                                  "b": 0.5844742059707642,
                                  "a": 1
                                },
                                "position": 0
                              },
                              {
                                "color": {
                                  "r": 0,
                                  "g": 0.8191801309585571,
                                  "b": 0.5427696704864502,
                                  "a": 1
                                },
                                "position": 1
                              }
                            ]
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.3095206916332245,
                        "strokeAlign": "CENTER",
                        "cornerRadius": 18.921457290649414,
                        "cornerSmoothing": 0,
                        "absoluteBoundingBox": {
                          "x": 1138.195068359375,
                          "y": 661.5670166015625,
                          "width": 113.52873992919922,
                          "height": 123.94437408447266
                        },
                        "absoluteRenderBounds": {
                          "x": 1129.1700439453125,
                          "y": 651.6083374023438,
                          "width": 131.5787353515625,
                          "height": 143.8616943359375
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [
                          {
                            "type": "DROP_SHADOW",
                            "visible": true,
                            "color": {
                              "r": 0,
                              "g": 0.269947350025177,
                              "b": 0.17840000987052917,
                              "a": 0.09000000357627869
                            },
                            "blendMode": "NORMAL",
                            "offset": {
                              "x": 0,
                              "y": 0
                            },
                            "radius": 9.958662033081055,
                            "showShadowBehindNode": false
                          }
                        ],
                        "interactions": []
                      },
                      {
                        "id": "2:694",
                        "name": "Rectangle 34626110",
                        "type": "RECTANGLE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "GRADIENT_LINEAR",
                            "gradientHandlePositions": [
                              {
                                "x": 0.5221519248834344,
                                "y": 4.985427063369147e-14
                              },
                              {
                                "x": 0.5221519248834481,
                                "y": 1.00000000000005
                              },
                              {
                                "x": 0.4947324413228972,
                                "y": -8.056334654634439e-10
                              }
                            ],
                            "gradientStops": [
                              {
                                "color": {
                                  "r": 0.0117647061124444,
                                  "g": 0.7882353067398071,
                                  "b": 0.4745098054409027,
                                  "a": 1
                                },
                                "position": 0
                              },
                              {
                                "color": {
                                  "r": 0,
                                  "g": 0.7350029349327087,
                                  "b": 0.447717547416687,
                                  "a": 1
                                },
                                "position": 1
                              }
                            ]
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "cornerRadius": 18.42352294921875,
                        "cornerSmoothing": 0,
                        "absoluteBoundingBox": {
                          "x": 1116.2860107421875,
                          "y": 728.0046997070312,
                          "width": 157.3468475341797,
                          "height": 36.68753433227539
                        },
                        "absoluteRenderBounds": {
                          "x": 1116.2860107421875,
                          "y": 728.0046997070312,
                          "width": 157.3468017578125,
                          "height": 36.68756103515625
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:695",
                        "name": "Vector 601",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [],
                        "fillOverrideTable": {
                          "1": null,
                          "2": null,
                          "3": null
                        },
                        "strokes": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6509804129600525,
                              "g": 0.9764705896377563,
                              "b": 0.7607843279838562,
                              "a": 1
                            }
                          }
                        ],
                        "strokeWeight": 2.9875986576080322,
                        "strokeAlign": "CENTER",
                        "strokeJoin": "ROUND",
                        "strokeCap": "ROUND",
                        "absoluteBoundingBox": {
                          "x": 1158.15234375,
                          "y": 737.9147338867188,
                          "width": 79.68075561523438,
                          "height": 14.171746253967285
                        },
                        "absoluteRenderBounds": {
                          "x": 1156.6585693359375,
                          "y": 736.4205932617188,
                          "width": 82.66845703125,
                          "height": 17.15972900390625
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:696",
                        "name": "Frame",
                        "type": "FRAME",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "2:697",
                            "name": "Vector",
                            "type": "VECTOR",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.02860725112259388,
                                  "g": 0.5845416188240051,
                                  "b": 0.3645462095737457,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0.19450511038303375,
                            "strokeAlign": "INSIDE",
                            "absoluteBoundingBox": {
                              "x": 1224.025146484375,
                              "y": 728.1633911132812,
                              "width": 37.4700813293457,
                              "height": 37.30668258666992
                            },
                            "absoluteRenderBounds": {
                              "x": 1224.025146484375,
                              "y": 728.1633911132812,
                              "width": 37.4700927734375,
                              "height": 37.30670166015625
                            },
                            "constraints": {
                              "vertical": "SCALE",
                              "horizontal": "SCALE"
                            },
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "2:698",
                            "name": "Vector",
                            "type": "VECTOR",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.02860725112259388,
                                  "g": 0.5845416188240051,
                                  "b": 0.3645462095737457,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0.19450511038303375,
                            "strokeAlign": "INSIDE",
                            "absoluteBoundingBox": {
                              "x": 1252.0159912109375,
                              "y": 756.0406494140625,
                              "width": 15.463837623596191,
                              "height": 15.395621299743652
                            },
                            "absoluteRenderBounds": {
                              "x": 1252.0159912109375,
                              "y": 756.0406494140625,
                              "width": 15.4638671875,
                              "height": 15.3956298828125
                            },
                            "constraints": {
                              "vertical": "SCALE",
                              "horizontal": "SCALE"
                            },
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "2:699",
                            "name": "Ellipse 2587",
                            "type": "ELLIPSE",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "opacity": 0.28999999165534973,
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0.9958661794662476,
                            "strokeAlign": "INSIDE",
                            "absoluteBoundingBox": {
                              "x": 1227.822998046875,
                              "y": 731.9710693359375,
                              "width": 29.875986099243164,
                              "height": 29.746652603149414
                            },
                            "absoluteRenderBounds": {
                              "x": 1227.822998046875,
                              "y": 731.9710693359375,
                              "width": 29.8759765625,
                              "height": 29.74664306640625
                            },
                            "constraints": {
                              "vertical": "SCALE",
                              "horizontal": "SCALE"
                            },
                            "effects": [
                              {
                                "type": "BACKGROUND_BLUR",
                                "visible": true,
                                "radius": 4.0830512046813965
                              },
                              {
                                "type": "INNER_SHADOW",
                                "visible": true,
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                },
                                "blendMode": "NORMAL",
                                "offset": {
                                  "x": 0,
                                  "y": 0
                                },
                                "radius": 11.751220703125
                              }
                            ],
                            "arcData": {
                              "startingAngle": 0,
                              "endingAngle": 6.2831854820251465,
                              "innerRadius": 0
                            },
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": true,
                        "background": [
                          {
                            "blendMode": "NORMAL",
                            "visible": false,
                            "type": "SOLID",
                            "color": {
                              "r": 1,
                              "g": 1,
                              "b": 1,
                              "a": 1
                            }
                          }
                        ],
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "visible": false,
                            "type": "SOLID",
                            "color": {
                              "r": 1,
                              "g": 1,
                              "b": 1,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 1220.85205078125,
                          "y": 725.0332641601562,
                          "width": 49.79330825805664,
                          "height": 49.57775115966797
                        },
                        "absoluteRenderBounds": {
                          "x": 1220.85205078125,
                          "y": 725.0332641601562,
                          "width": 49.7933349609375,
                          "height": 49.5777587890625
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:700",
                        "name": "Group 1410104846",
                        "type": "GROUP",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "2:701",
                            "name": "Ellipse 2583",
                            "type": "ELLIPSE",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.9934962391853333,
                                  "g": 0.7477474212646484,
                                  "b": 0.2174474149942398,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0.9958661794662476,
                            "strokeAlign": "INSIDE",
                            "absoluteBoundingBox": {
                              "x": 1124.2529296875,
                              "y": 734.9506225585938,
                              "width": 22.904922485351562,
                              "height": 22.80576515197754
                            },
                            "absoluteRenderBounds": {
                              "x": 1124.2529296875,
                              "y": 734.9506225585938,
                              "width": 22.9049072265625,
                              "height": 22.8057861328125
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "arcData": {
                              "startingAngle": 0,
                              "endingAngle": 6.2831854820251465,
                              "innerRadius": 0
                            },
                            "interactions": []
                          },
                          {
                            "id": "2:702",
                            "name": "Ellipse 2584",
                            "type": "ELLIPSE",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0.9958661794662476,
                            "strokeAlign": "INSIDE",
                            "absoluteBoundingBox": {
                              "x": 1134.211669921875,
                              "y": 750.8113403320312,
                              "width": 2.987598419189453,
                              "height": 2.9746649265289307
                            },
                            "absoluteRenderBounds": {
                              "x": 1134.211669921875,
                              "y": 750.8113403320312,
                              "width": 2.987548828125,
                              "height": 2.97467041015625
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "arcData": {
                              "startingAngle": 0,
                              "endingAngle": 6.2831854820251465,
                              "innerRadius": 0
                            },
                            "interactions": []
                          },
                          {
                            "id": "2:703",
                            "name": "Rectangle 34626111",
                            "type": "RECTANGLE",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0.9958661794662476,
                            "strokeAlign": "INSIDE",
                            "cornerRadius": 2.9875986576080322,
                            "cornerSmoothing": 0,
                            "absoluteBoundingBox": {
                              "x": 1134.211669921875,
                              "y": 738.9099731445312,
                              "width": 2.987598419189453,
                              "height": 9.915549278259277
                            },
                            "absoluteRenderBounds": {
                              "x": 1134.211669921875,
                              "y": 738.9099731445312,
                              "width": 2.987548828125,
                              "height": 9.91552734375
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "rectangleCornerRadii": [0, 0, 0, 0],
                        "cornerSmoothing": 0,
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 1124.2529296875,
                          "y": 734.9506225585938,
                          "width": 22.904922485351562,
                          "height": 22.80576515197754
                        },
                        "absoluteRenderBounds": {
                          "x": 1124.2529296875,
                          "y": 734.9506225585938,
                          "width": 22.904922485351562,
                          "height": 22.8057861328125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:704",
                        "name": "Ellipse 2585",
                        "type": "ELLIPSE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6039215922355652,
                              "g": 0.9490196108818054,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 1160.1041259765625,
                          "y": 700.2426147460938,
                          "width": 7.9669294357299805,
                          "height": 7.932440280914307
                        },
                        "absoluteRenderBounds": {
                          "x": 1160.1041259765625,
                          "y": 700.2426147460938,
                          "width": 7.9669189453125,
                          "height": 7.93243408203125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "arcData": {
                          "startingAngle": 0,
                          "endingAngle": 6.2831854820251465,
                          "innerRadius": 0
                        },
                        "interactions": []
                      },
                      {
                        "id": "2:705",
                        "name": "Ellipse 2586",
                        "type": "ELLIPSE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6039215922355652,
                              "g": 0.9490196108818054,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 1160.1041259765625,
                          "y": 712.13623046875,
                          "width": 7.9669294357299805,
                          "height": 7.932440280914307
                        },
                        "absoluteRenderBounds": {
                          "x": 1160.1041259765625,
                          "y": 712.13623046875,
                          "width": 7.9669189453125,
                          "height": 7.93243408203125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "arcData": {
                          "startingAngle": 0,
                          "endingAngle": 6.2831854820251465,
                          "innerRadius": 0
                        },
                        "interactions": []
                      },
                      {
                        "id": "2:706",
                        "name": "Rectangle 34626112",
                        "type": "RECTANGLE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6039215922355652,
                              "g": 0.9490196108818054,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "cornerRadius": 2.9875986576080322,
                        "cornerSmoothing": 0,
                        "absoluteBoundingBox": {
                          "x": 1172.0545654296875,
                          "y": 700.2426147460938,
                          "width": 61.74370193481445,
                          "height": 7.932440280914307
                        },
                        "absoluteRenderBounds": {
                          "x": 1172.0545654296875,
                          "y": 700.2426147460938,
                          "width": 61.74365234375,
                          "height": 7.93243408203125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:707",
                        "name": "Rectangle 34626113",
                        "type": "RECTANGLE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6039215922355652,
                              "g": 0.9490196108818054,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "cornerRadius": 2.9875986576080322,
                        "cornerSmoothing": 0,
                        "absoluteBoundingBox": {
                          "x": 1172.0545654296875,
                          "y": 712.13623046875,
                          "width": 48.79743957519531,
                          "height": 7.932440280914307
                        },
                        "absoluteRenderBounds": {
                          "x": 1172.0545654296875,
                          "y": 712.13623046875,
                          "width": 48.7974853515625,
                          "height": 7.93243408203125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:708",
                        "name": "Vector 600",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [],
                        "fillOverrideTable": {
                          "1": null,
                          "2": null,
                          "3": null
                        },
                        "strokes": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6509804129600525,
                              "g": 0.9764705896377563,
                              "b": 0.7607843279838562,
                              "a": 1
                            }
                          }
                        ],
                        "strokeWeight": 2.9875986576080322,
                        "strokeAlign": "CENTER",
                        "strokeJoin": "ROUND",
                        "strokeCap": "ROUND",
                        "absoluteBoundingBox": {
                          "x": 1156.1207275390625,
                          "y": 677.427734375,
                          "width": 79.72064208984375,
                          "height": 11.296095848083496
                        },
                        "absoluteRenderBounds": {
                          "x": 1154.626953125,
                          "y": 675.93359375,
                          "width": 82.7083740234375,
                          "height": 14.2840576171875
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:709",
                        "name": "Star 4",
                        "type": "STAR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "opacity": 0.44999998807907104,
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.26274511218070984,
                              "g": 0.929411768913269,
                              "b": 0.5803921818733215,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.9958661794662476,
                        "strokeAlign": "INSIDE",
                        "cornerRadius": 0.9958661794662476,
                        "cornerSmoothing": 0,
                        "absoluteBoundingBox": {
                          "x": 1099.3563232421875,
                          "y": 677.427734375,
                          "width": 21.909053802490234,
                          "height": 21.814208984375
                        },
                        "absoluteRenderBounds": {
                          "x": 1101.794189453125,
                          "y": 679.8384399414062,
                          "width": 17.0333251953125,
                          "height": 16.9927978515625
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:710",
                        "name": "Group 1410104431",
                        "type": "GROUP",
                        "scrollBehavior": "SCROLLS",
                        "rotation": 5.527084202842137e-17,
                        "children": [
                          {
                            "id": "2:711",
                            "name": "Union",
                            "type": "BOOLEAN_OPERATION",
                            "scrollBehavior": "SCROLLS",
                            "rotation": -1.2451086677321256e-24,
                            "children": [
                              {
                                "id": "2:712",
                                "name": "Vector 561 (Stroke)",
                                "type": "VECTOR",
                                "scrollBehavior": "SCROLLS",
                                "rotation": -1.2451086677321256e-24,
                                "blendMode": "PASS_THROUGH",
                                "fills": [
                                  {
                                    "opacity": 0.10000000149011612,
                                    "blendMode": "NORMAL",
                                    "type": "SOLID",
                                    "color": {
                                      "r": 0.1411764770746231,
                                      "g": 0.7803921699523926,
                                      "b": 0.5647059082984924,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 1.9917323589324951,
                                "strokeAlign": "CENTER",
                                "strokeCap": "ROUND",
                                "absoluteBoundingBox": {
                                  "x": 1252.719482421875,
                                  "y": 779.5591430664062,
                                  "width": 9.958661079406738,
                                  "height": 1.9831100702285767
                                },
                                "absoluteRenderBounds": null,
                                "constraints": {
                                  "vertical": "TOP",
                                  "horizontal": "LEFT"
                                },
                                "effects": [],
                                "interactions": []
                              },
                              {
                                "id": "2:713",
                                "name": "Vector 562 (Stroke)",
                                "type": "VECTOR",
                                "scrollBehavior": "SCROLLS",
                                "rotation": 1.57079641145509,
                                "blendMode": "PASS_THROUGH",
                                "fills": [
                                  {
                                    "opacity": 0.10000000149011612,
                                    "blendMode": "NORMAL",
                                    "type": "SOLID",
                                    "color": {
                                      "r": 0.1411764770746231,
                                      "g": 0.7803921699523926,
                                      "b": 0.5647059082984924,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 1.9917323589324951,
                                "strokeAlign": "CENTER",
                                "strokeCap": "ROUND",
                                "absoluteBoundingBox": {
                                  "x": 1256.7027248094278,
                                  "y": 775.5997923133051,
                                  "width": 1.9917331983847362,
                                  "height": 9.915549445422926
                                },
                                "absoluteRenderBounds": null,
                                "constraints": {
                                  "vertical": "TOP",
                                  "horizontal": "LEFT"
                                },
                                "effects": [],
                                "interactions": []
                              }
                            ],
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "opacity": 0.20000000298023224,
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.1411764770746231,
                                  "g": 0.7803921699523926,
                                  "b": 0.5647059082984924,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0,
                            "strokeAlign": "CENTER",
                            "strokeCap": "ROUND",
                            "booleanOperation": "UNION",
                            "absoluteBoundingBox": {
                              "x": 1252.7197265625,
                              "y": 775.6001586914062,
                              "width": 9.9580078125,
                              "height": 9.9150390625
                            },
                            "absoluteRenderBounds": {
                              "x": 1252.7197265625,
                              "y": 775.6001586914062,
                              "width": 9.9580078125,
                              "height": 9.9150390625
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 0.4979330897331238,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 1252.7197265625,
                          "y": 775.6001586914062,
                          "width": 9.9580078125,
                          "height": 9.9150390625
                        },
                        "absoluteRenderBounds": {
                          "x": 1252.7197265625,
                          "y": 775.6001586914062,
                          "width": 9.9580078125,
                          "height": 9.9150390625
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:714",
                        "name": "Group 1410104847",
                        "type": "GROUP",
                        "scrollBehavior": "SCROLLS",
                        "rotation": 0.7832289476437421,
                        "children": [
                          {
                            "id": "2:715",
                            "name": "Union",
                            "type": "BOOLEAN_OPERATION",
                            "scrollBehavior": "SCROLLS",
                            "rotation": -2.591895864600957e-10,
                            "children": [
                              {
                                "id": "2:716",
                                "name": "Vector 561 (Stroke)",
                                "type": "VECTOR",
                                "scrollBehavior": "SCROLLS",
                                "rotation": -2.591895864600957e-10,
                                "blendMode": "PASS_THROUGH",
                                "fills": [
                                  {
                                    "opacity": 0.10000000149011612,
                                    "blendMode": "NORMAL",
                                    "type": "SOLID",
                                    "color": {
                                      "r": 0.1411764770746231,
                                      "g": 0.7803921699523926,
                                      "b": 0.5647059082984924,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 1.9917323589324951,
                                "strokeAlign": "CENTER",
                                "strokeCap": "ROUND",
                                "absoluteBoundingBox": {
                                  "x": 1280.4326970016364,
                                  "y": 716.9205932617188,
                                  "width": 8.450204286549706,
                                  "height": 8.413622949463615
                                },
                                "absoluteRenderBounds": null,
                                "constraints": {
                                  "vertical": "SCALE",
                                  "horizontal": "SCALE"
                                },
                                "effects": [],
                                "interactions": []
                              },
                              {
                                "id": "2:717",
                                "name": "Vector 562 (Stroke)",
                                "type": "VECTOR",
                                "scrollBehavior": "SCROLLS",
                                "rotation": 1.570796411347784,
                                "blendMode": "PASS_THROUGH",
                                "fills": [
                                  {
                                    "opacity": 0.10000000149011612,
                                    "blendMode": "NORMAL",
                                    "type": "SOLID",
                                    "color": {
                                      "r": 0.1411764770746231,
                                      "g": 0.7803921699523926,
                                      "b": 0.5647059082984924,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 1.9917323589324951,
                                "strokeAlign": "CENTER",
                                "strokeCap": "ROUND",
                                "absoluteBoundingBox": {
                                  "x": 1280.4326077396113,
                                  "y": 716.9262815659645,
                                  "width": 8.450204760388715,
                                  "height": 8.41362247562438
                                },
                                "absoluteRenderBounds": null,
                                "constraints": {
                                  "vertical": "SCALE",
                                  "horizontal": "SCALE"
                                },
                                "effects": [],
                                "interactions": []
                              }
                            ],
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "opacity": 0.20000000298023224,
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.1411764770746231,
                                  "g": 0.7803921699523926,
                                  "b": 0.5647059082984924,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 0,
                            "strokeAlign": "CENTER",
                            "strokeCap": "ROUND",
                            "booleanOperation": "UNION",
                            "absoluteBoundingBox": {
                              "x": 1277.613173712045,
                              "y": 714.1190795898438,
                              "width": 14.083507420669775,
                              "height": 14.022539245837834
                            },
                            "absoluteRenderBounds": {
                              "x": 1280.8450927734375,
                              "y": 717.3314208984375,
                              "width": 7.625244140625,
                              "height": 7.59759521484375
                            },
                            "constraints": {
                              "vertical": "SCALE",
                              "horizontal": "SCALE"
                            },
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 0.4979330897331238,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 1277.613173712045,
                          "y": 714.1190795898438,
                          "width": 14.083507420669775,
                          "height": 14.022539245837834
                        },
                        "absoluteRenderBounds": {
                          "x": 1277.613173712045,
                          "y": 714.1190795898438,
                          "width": 14.083507420669775,
                          "height": 14.022539245837834
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "2:718",
                        "name": "Ellipse 2568",
                        "type": "ELLIPSE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [],
                        "strokes": [
                          {
                            "opacity": 0.20000000298023224,
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.1411764770746231,
                              "g": 0.7803921699523926,
                              "b": 0.5647059082984924,
                              "a": 1
                            }
                          }
                        ],
                        "strokeWeight": 1.9917323589324951,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 1268.653564453125,
                          "y": 677.427734375,
                          "width": 10.954526901245117,
                          "height": 10.9071044921875
                        },
                        "absoluteRenderBounds": {
                          "x": 1268.653564453125,
                          "y": 677.427734375,
                          "width": 10.9544677734375,
                          "height": 10.9071044921875
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "arcData": {
                          "startingAngle": 0,
                          "endingAngle": 6.2831854820251465,
                          "innerRadius": 0
                        },
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "rectangleCornerRadii": [0, 0, 0, 0],
                    "cornerSmoothing": 0,
                    "strokeWeight": 0.9958661794662476,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 1099.3563232421875,
                      "y": 661.5670166015625,
                      "width": 192.34036254882812,
                      "height": 123.94818115234375
                    },
                    "absoluteRenderBounds": {
                      "x": 1099.3563232421875,
                      "y": 651.6083374023438,
                      "width": 192.34036254882812,
                      "height": 143.8616943359375
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "rectangleCornerRadii": [0, 0, 0, 0],
                "cornerSmoothing": 0,
                "strokeWeight": 1.100000023841858,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 1086,
                  "y": 654,
                  "width": 220,
                  "height": 138
                },
                "absoluteRenderBounds": {
                  "x": 1086,
                  "y": 651.6083374023438,
                  "width": 220,
                  "height": 143.8616943359375
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "exportSettings": [
                  {
                    "suffix": "",
                    "format": "PNG",
                    "constraint": {
                      "type": "SCALE",
                      "value": 2
                    }
                  }
                ],
                "effects": [],
                "interactions": []
              }
            ],
            "blendMode": "PASS_THROUGH",
            "clipsContent": false,
            "background": [],
            "fills": [],
            "strokes": [],
            "rectangleCornerRadii": [0, 0, 0, 0],
            "cornerSmoothing": 0,
            "strokeWeight": 1,
            "strokeAlign": "INSIDE",
            "backgroundColor": {
              "r": 0,
              "g": 0,
              "b": 0,
              "a": 0
            },
            "absoluteBoundingBox": {
              "x": 1021,
              "y": 654,
              "width": 350,
              "height": 316
            },
            "absoluteRenderBounds": {
              "x": 1021,
              "y": 651.6083374023438,
              "width": 350,
              "height": 318.39166259765625
            },
            "constraints": {
              "vertical": "TOP",
              "horizontal": "LEFT"
            },
            "exportSettings": [
              {
                "suffix": "",
                "format": "PNG",
                "constraint": {
                  "type": "SCALE",
                  "value": 1
                }
              }
            ],
            "effects": [],
            "interactions": []
          }
        ],
        "blendMode": "PASS_THROUGH",
        "clipsContent": false,
        "background": [],
        "fills": [],
        "strokes": [],
        "rectangleCornerRadii": [0, 0, 0, 0],
        "cornerSmoothing": 0,
        "strokeWeight": 1,
        "strokeAlign": "INSIDE",
        "backgroundColor": {
          "r": 0,
          "g": 0,
          "b": 0,
          "a": 0
        },
        "absoluteBoundingBox": {
          "x": 406,
          "y": 422,
          "width": 1580,
          "height": 895
        },
        "absoluteRenderBounds": {
          "x": 406,
          "y": 422,
          "width": 1580,
          "height": 895
        },
        "constraints": {
          "vertical": "TOP",
          "horizontal": "LEFT"
        },
        "exportSettings": [
          {
            "suffix": "",
            "format": "PNG",
            "constraint": {
              "type": "SCALE",
              "value": 1
            }
          }
        ],
        "effects": [],
        "interactions": []
      },
      "components": {},
      "componentSets": {},
      "schemaVersion": 0,
      "styles": {}
    }
  }
}

```

--------------------------------------------------------------------------------
/tests/fixtures/figma-data/node-402-34955.json:
--------------------------------------------------------------------------------

```json
{
  "name": "Untitled",
  "lastModified": "2025-12-05T16:16:42Z",
  "thumbnailUrl": "https://s3-alpha.figma.com/thumbnails/6d4c4440-1098-402c-b983-1bf44c182966?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWCXJW6HYPC%2F20251204%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20251204T000000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=d3f06b6fe775803929be1e1b720481975e85de86c48cc9eceead613e35ad8501",
  "version": "2294103145619317358",
  "role": "owner",
  "editorType": "figma",
  "linkAccess": "view",
  "nodes": {
    "402:34955": {
      "document": {
        "id": "402:34955",
        "name": "Group 1410104853",
        "type": "GROUP",
        "scrollBehavior": "SCROLLS",
        "children": [
          {
            "id": "398:31938",
            "name": "Rectangle 34",
            "type": "RECTANGLE",
            "locked": true,
            "scrollBehavior": "SCROLLS",
            "blendMode": "PASS_THROUGH",
            "fills": [
              {
                "blendMode": "NORMAL",
                "type": "SOLID",
                "color": {
                  "r": 1,
                  "g": 1,
                  "b": 1,
                  "a": 1
                }
              }
            ],
            "strokes": [],
            "strokeWeight": 1,
            "strokeAlign": "INSIDE",
            "cornerRadius": 12,
            "cornerSmoothing": 0,
            "absoluteBoundingBox": {
              "x": 29147,
              "y": 88511,
              "width": 1580,
              "height": 895
            },
            "absoluteRenderBounds": {
              "x": 29147,
              "y": 88511,
              "width": 1580,
              "height": 895
            },
            "constraints": {
              "vertical": "TOP",
              "horizontal": "LEFT"
            },
            "effects": [],
            "interactions": []
          },
          {
            "id": "398:34954",
            "name": "Group 1410104852",
            "type": "GROUP",
            "scrollBehavior": "SCROLLS",
            "children": [
              {
                "id": "398:31946",
                "name": "Group 1410104481",
                "type": "COMPONENT",
                "scrollBehavior": "SCROLLS",
                "children": [
                  {
                    "id": "398:31947",
                    "name": "Rectangle 34626009",
                    "type": "RECTANGLE",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.7680059671401978,
                          "g": 0.7680059671401978,
                          "b": 0.7680059671401978,
                          "a": 1
                        }
                      }
                    ],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "cornerRadius": 16,
                    "cornerSmoothing": 0,
                    "absoluteBoundingBox": {
                      "x": 29173,
                      "y": 88700,
                      "width": 500,
                      "height": 78
                    },
                    "absoluteRenderBounds": {
                      "x": 29173,
                      "y": 88700,
                      "width": 500,
                      "height": 78
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31948",
                    "name": "Frame",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31949",
                        "name": "Vector",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.7333333492279053,
                              "g": 0.7333333492279053,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.1953125,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 29615.068359375,
                          "y": 88728.7890625,
                          "width": 33.856929779052734,
                          "height": 20.43496322631836
                        },
                        "absoluteRenderBounds": {
                          "x": 29615.068359375,
                          "y": 88728.7890625,
                          "width": 33.857421875,
                          "height": 20.4375
                        },
                        "constraints": {
                          "vertical": "SCALE",
                          "horizontal": "SCALE"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": true,
                    "background": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 29615,
                      "y": 88722,
                      "width": 34,
                      "height": 34
                    },
                    "absoluteRenderBounds": {
                      "x": 29615,
                      "y": 88722,
                      "width": 34,
                      "height": 34
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31950",
                    "name": "Frame 1410086320",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31951",
                        "name": "Frame 1410086319",
                        "type": "FRAME",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "398:31952",
                            "name": "早恋",
                            "type": "TEXT",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0,
                                  "g": 0,
                                  "b": 0,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "OUTSIDE",
                            "absoluteBoundingBox": {
                              "x": 29195,
                              "y": 88718,
                              "width": 28,
                              "height": 20
                            },
                            "absoluteRenderBounds": {
                              "x": 29195.783203125,
                              "y": 88721.40625,
                              "width": 26.642578125,
                              "height": 12.9921875
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "HUG",
                            "layoutSizingVertical": "HUG",
                            "characters": "早恋",
                            "characterStyleOverrides": [],
                            "styleOverrideTable": {},
                            "lineTypes": ["NONE"],
                            "lineIndentations": [0],
                            "style": {
                              "fontFamily": "PingFang SC",
                              "fontPostScriptName": "PingFangSC-Medium",
                              "fontStyle": "Medium",
                              "fontWeight": 500,
                              "textAutoResize": "WIDTH_AND_HEIGHT",
                              "fontSize": 14,
                              "textAlignHorizontal": "LEFT",
                              "textAlignVertical": "CENTER",
                              "letterSpacing": 0,
                              "lineHeightPx": 19.600000381469727,
                              "lineHeightPercent": 100,
                              "lineHeightUnit": "INTRINSIC_%"
                            },
                            "layoutVersion": 4,
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "398:31953",
                            "name": "Vector 585",
                            "type": "VECTOR",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [],
                            "fillOverrideTable": {
                              "1": null
                            },
                            "strokes": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.4000000059604645,
                                  "g": 0.4000000059604645,
                                  "b": 0.4000000059604645,
                                  "a": 1
                                }
                              }
                            ],
                            "strokeWeight": 1.5,
                            "strokeAlign": "CENTER",
                            "strokeJoin": "ROUND",
                            "strokeCap": "ROUND",
                            "absoluteBoundingBox": {
                              "x": 29233,
                              "y": 88724,
                              "width": 4,
                              "height": 8
                            },
                            "absoluteRenderBounds": {
                              "x": 29232.25,
                              "y": 88723.25,
                              "width": 5.5,
                              "height": 9.5
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "FIXED",
                            "layoutSizingVertical": "FIXED",
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "layoutMode": "HORIZONTAL",
                        "primaryAxisSizingMode": "FIXED",
                        "counterAxisAlignItems": "CENTER",
                        "itemSpacing": 10,
                        "layoutWrap": "NO_WRAP",
                        "absoluteBoundingBox": {
                          "x": 29195,
                          "y": 88718,
                          "width": 70,
                          "height": 20
                        },
                        "absoluteRenderBounds": {
                          "x": 29195,
                          "y": 88718,
                          "width": 70,
                          "height": 20
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "398:31954",
                        "name": "8 个关键词",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6000000238418579,
                              "g": 0.6000000238418579,
                              "b": 0.6000000238418579,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 29195,
                          "y": 88743,
                          "width": 70,
                          "height": 17
                        },
                        "absoluteRenderBounds": {
                          "x": 29195.50390625,
                          "y": 88746.109375,
                          "width": 57.703125,
                          "height": 11.078125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "characters": "8 个关键词",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Regular",
                          "fontStyle": "Regular",
                          "fontWeight": 400,
                          "textAutoResize": "HEIGHT",
                          "fontSize": 12,
                          "textAlignHorizontal": "LEFT",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 16.799999237060547,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 4,
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "layoutMode": "VERTICAL",
                    "counterAxisSizingMode": "FIXED",
                    "itemSpacing": 5,
                    "layoutWrap": "NO_WRAP",
                    "absoluteBoundingBox": {
                      "x": 29195,
                      "y": 88718,
                      "width": 70,
                      "height": 42
                    },
                    "absoluteRenderBounds": {
                      "x": 29195,
                      "y": 88718,
                      "width": 70,
                      "height": 42
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "layoutSizingHorizontal": "FIXED",
                    "layoutSizingVertical": "HUG",
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 29173,
                  "y": 88700,
                  "width": 500,
                  "height": 78
                },
                "absoluteRenderBounds": {
                  "x": 29173,
                  "y": 88700,
                  "width": 500,
                  "height": 78
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "398:31955",
                "name": "Group 1410104485",
                "type": "INSTANCE",
                "scrollBehavior": "SCROLLS",
                "componentId": "398:31946",
                "overrides": [
                  {
                    "id": "398:31955",
                    "overriddenFields": ["name"]
                  },
                  {
                    "id": "I398:31955;398:31952",
                    "overriddenFields": [
                      "characterStyleOverrides",
                      "characters",
                      "lineIndentations",
                      "lineTypes",
                      "styleOverrideTable"
                    ]
                  },
                  {
                    "id": "I398:31955;398:31954",
                    "overriddenFields": [
                      "characterStyleOverrides",
                      "characters",
                      "lineIndentations",
                      "lineTypes",
                      "styleOverrideTable"
                    ]
                  }
                ],
                "children": [
                  {
                    "id": "I398:31955;398:31947",
                    "name": "Rectangle 34626009",
                    "type": "RECTANGLE",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.7680059671401978,
                          "g": 0.7680059671401978,
                          "b": 0.7680059671401978,
                          "a": 1
                        }
                      }
                    ],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "cornerRadius": 16,
                    "cornerSmoothing": 0,
                    "absoluteBoundingBox": {
                      "x": 29173,
                      "y": 88792,
                      "width": 500,
                      "height": 78
                    },
                    "absoluteRenderBounds": {
                      "x": 29173,
                      "y": 88792,
                      "width": 500,
                      "height": 78
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "I398:31955;398:31948",
                    "name": "Frame",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "I398:31955;398:31949",
                        "name": "Vector",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.7333333492279053,
                              "g": 0.7333333492279053,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.1953125,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 29615.068359375,
                          "y": 88820.7890625,
                          "width": 33.856929779052734,
                          "height": 20.43496322631836
                        },
                        "absoluteRenderBounds": {
                          "x": 29615.068359375,
                          "y": 88820.7890625,
                          "width": 33.857421875,
                          "height": 20.4375
                        },
                        "constraints": {
                          "vertical": "SCALE",
                          "horizontal": "SCALE"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": true,
                    "background": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 29615,
                      "y": 88814,
                      "width": 34,
                      "height": 34
                    },
                    "absoluteRenderBounds": {
                      "x": 29615,
                      "y": 88814,
                      "width": 34,
                      "height": 34
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "I398:31955;398:31950",
                    "name": "Frame 1410086320",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "I398:31955;398:31951",
                        "name": "Frame 1410086319",
                        "type": "FRAME",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "I398:31955;398:31952",
                            "name": "早恋",
                            "type": "TEXT",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0,
                                  "g": 0,
                                  "b": 0,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "OUTSIDE",
                            "absoluteBoundingBox": {
                              "x": 29195,
                              "y": 88810,
                              "width": 56,
                              "height": 20
                            },
                            "absoluteRenderBounds": {
                              "x": 29195.517578125,
                              "y": 88813.4375,
                              "width": 54.935546875,
                              "height": 13.0625
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "HUG",
                            "layoutSizingVertical": "HUG",
                            "characters": "色情违法",
                            "characterStyleOverrides": [],
                            "styleOverrideTable": {},
                            "lineTypes": ["NONE"],
                            "lineIndentations": [0],
                            "style": {
                              "fontFamily": "PingFang SC",
                              "fontPostScriptName": "PingFangSC-Medium",
                              "fontStyle": "Medium",
                              "fontWeight": 500,
                              "textAutoResize": "WIDTH_AND_HEIGHT",
                              "fontSize": 14,
                              "textAlignHorizontal": "LEFT",
                              "textAlignVertical": "CENTER",
                              "letterSpacing": 0,
                              "lineHeightPx": 19.600000381469727,
                              "lineHeightPercent": 100,
                              "lineHeightUnit": "INTRINSIC_%"
                            },
                            "layoutVersion": 4,
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "I398:31955;398:31953",
                            "name": "Vector 585",
                            "type": "VECTOR",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [],
                            "fillOverrideTable": {
                              "1": null
                            },
                            "strokes": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.4000000059604645,
                                  "g": 0.4000000059604645,
                                  "b": 0.4000000059604645,
                                  "a": 1
                                }
                              }
                            ],
                            "strokeWeight": 1.5,
                            "strokeAlign": "CENTER",
                            "strokeJoin": "ROUND",
                            "strokeCap": "ROUND",
                            "absoluteBoundingBox": {
                              "x": 29261,
                              "y": 88816,
                              "width": 4,
                              "height": 8
                            },
                            "absoluteRenderBounds": {
                              "x": 29260.25,
                              "y": 88815.25,
                              "width": 5.5,
                              "height": 9.5
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "FIXED",
                            "layoutSizingVertical": "FIXED",
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "layoutMode": "HORIZONTAL",
                        "primaryAxisSizingMode": "FIXED",
                        "counterAxisAlignItems": "CENTER",
                        "itemSpacing": 10,
                        "layoutWrap": "NO_WRAP",
                        "absoluteBoundingBox": {
                          "x": 29195,
                          "y": 88810,
                          "width": 70,
                          "height": 20
                        },
                        "absoluteRenderBounds": {
                          "x": 29195,
                          "y": 88810,
                          "width": 70.75,
                          "height": 20
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "I398:31955;398:31954",
                        "name": "8 个关键词",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6000000238418579,
                              "g": 0.6000000238418579,
                              "b": 0.6000000238418579,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 29195,
                          "y": 88835,
                          "width": 70,
                          "height": 17
                        },
                        "absoluteRenderBounds": {
                          "x": 29195.611328125,
                          "y": 88838.109375,
                          "width": 64.791015625,
                          "height": 11.078125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "characters": "32 个关键词",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Regular",
                          "fontStyle": "Regular",
                          "fontWeight": 400,
                          "textAutoResize": "HEIGHT",
                          "fontSize": 12,
                          "textAlignHorizontal": "LEFT",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 16.799999237060547,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 4,
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "layoutMode": "VERTICAL",
                    "counterAxisSizingMode": "FIXED",
                    "itemSpacing": 5,
                    "layoutWrap": "NO_WRAP",
                    "absoluteBoundingBox": {
                      "x": 29195,
                      "y": 88810,
                      "width": 70,
                      "height": 42
                    },
                    "absoluteRenderBounds": {
                      "x": 29195,
                      "y": 88810,
                      "width": 70.75,
                      "height": 42
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "layoutSizingHorizontal": "FIXED",
                    "layoutSizingVertical": "HUG",
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 29173,
                  "y": 88792,
                  "width": 500,
                  "height": 78
                },
                "absoluteRenderBounds": {
                  "x": 29173,
                  "y": 88792,
                  "width": 500,
                  "height": 78
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "398:31956",
                "name": "Group 1410104482",
                "type": "FRAME",
                "scrollBehavior": "SCROLLS",
                "children": [
                  {
                    "id": "398:31957",
                    "name": "Rectangle 34626009",
                    "type": "RECTANGLE",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.7680059671401978,
                          "g": 0.7680059671401978,
                          "b": 0.7680059671401978,
                          "a": 1
                        }
                      }
                    ],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "cornerRadius": 16,
                    "cornerSmoothing": 0,
                    "absoluteBoundingBox": {
                      "x": 29687,
                      "y": 88700,
                      "width": 500,
                      "height": 78
                    },
                    "absoluteRenderBounds": {
                      "x": 29687,
                      "y": 88700,
                      "width": 500,
                      "height": 78
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31958",
                    "name": "Frame",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "rotation": 3.141592653589793,
                    "children": [
                      {
                        "id": "398:31959",
                        "name": "Vector",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "boundVariables": {
                          "fills": [
                            {
                              "type": "VARIABLE_ALIAS",
                              "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                            }
                          ]
                        },
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.1411764770746231,
                              "g": 0.7803921699523926,
                              "b": 0.5647059082984924,
                              "a": 1
                            },
                            "boundVariables": {
                              "color": {
                                "type": "VARIABLE_ALIAS",
                                "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                              }
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.1953125,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 30129.074710845947,
                          "y": 88728.77597427368,
                          "width": 33.856929779052734,
                          "height": 20.43496322631836
                        },
                        "absoluteRenderBounds": {
                          "x": 30129.07421875,
                          "y": 88728.7734375,
                          "width": 33.857421875,
                          "height": 20.4375
                        },
                        "constraints": {
                          "vertical": "SCALE",
                          "horizontal": "SCALE"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": true,
                    "background": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 30129,
                      "y": 88722,
                      "width": 34,
                      "height": 34
                    },
                    "absoluteRenderBounds": {
                      "x": 30129,
                      "y": 88722,
                      "width": 34,
                      "height": 34
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31960",
                    "name": "Frame 1410086320",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31961",
                        "name": "Frame 1410086319",
                        "type": "FRAME",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "398:31962",
                            "name": "早恋",
                            "type": "TEXT",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0,
                                  "g": 0,
                                  "b": 0,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "OUTSIDE",
                            "absoluteBoundingBox": {
                              "x": 29709,
                              "y": 88718,
                              "width": 56,
                              "height": 20
                            },
                            "absoluteRenderBounds": {
                              "x": 29709.43359375,
                              "y": 88721.390625,
                              "width": 53.873046875,
                              "height": 13.1328125
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "HUG",
                            "layoutSizingVertical": "HUG",
                            "characters": "校园暴力",
                            "characterStyleOverrides": [],
                            "styleOverrideTable": {},
                            "lineTypes": ["NONE"],
                            "lineIndentations": [0],
                            "style": {
                              "fontFamily": "PingFang SC",
                              "fontPostScriptName": "PingFangSC-Medium",
                              "fontStyle": "Medium",
                              "fontWeight": 500,
                              "textAutoResize": "WIDTH_AND_HEIGHT",
                              "fontSize": 14,
                              "textAlignHorizontal": "LEFT",
                              "textAlignVertical": "CENTER",
                              "letterSpacing": 0,
                              "lineHeightPx": 19.600000381469727,
                              "lineHeightPercent": 100,
                              "lineHeightUnit": "INTRINSIC_%"
                            },
                            "layoutVersion": 4,
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "398:31963",
                            "name": "Vector 585",
                            "type": "VECTOR",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [],
                            "fillOverrideTable": {
                              "1": null
                            },
                            "strokes": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.4000000059604645,
                                  "g": 0.4000000059604645,
                                  "b": 0.4000000059604645,
                                  "a": 1
                                }
                              }
                            ],
                            "strokeWeight": 1.5,
                            "strokeAlign": "CENTER",
                            "strokeJoin": "ROUND",
                            "strokeCap": "ROUND",
                            "absoluteBoundingBox": {
                              "x": 29775,
                              "y": 88724,
                              "width": 4,
                              "height": 8
                            },
                            "absoluteRenderBounds": {
                              "x": 29774.25,
                              "y": 88723.25,
                              "width": 5.5,
                              "height": 9.5
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "FIXED",
                            "layoutSizingVertical": "FIXED",
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "layoutMode": "HORIZONTAL",
                        "primaryAxisSizingMode": "FIXED",
                        "counterAxisAlignItems": "CENTER",
                        "itemSpacing": 10,
                        "layoutWrap": "NO_WRAP",
                        "absoluteBoundingBox": {
                          "x": 29709,
                          "y": 88718,
                          "width": 70,
                          "height": 20
                        },
                        "absoluteRenderBounds": {
                          "x": 29709,
                          "y": 88718,
                          "width": 70.75,
                          "height": 20
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "398:31964",
                        "name": "8 个关键词",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6000000238418579,
                              "g": 0.6000000238418579,
                              "b": 0.6000000238418579,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 29709,
                          "y": 88743,
                          "width": 70,
                          "height": 17
                        },
                        "absoluteRenderBounds": {
                          "x": 29709.611328125,
                          "y": 88746.109375,
                          "width": 64.158203125,
                          "height": 11.078125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "characters": "67 个关键词",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Regular",
                          "fontStyle": "Regular",
                          "fontWeight": 400,
                          "textAutoResize": "HEIGHT",
                          "fontSize": 12,
                          "textAlignHorizontal": "LEFT",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 16.799999237060547,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 4,
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "layoutMode": "VERTICAL",
                    "counterAxisSizingMode": "FIXED",
                    "itemSpacing": 5,
                    "layoutWrap": "NO_WRAP",
                    "absoluteBoundingBox": {
                      "x": 29709,
                      "y": 88718,
                      "width": 70,
                      "height": 42
                    },
                    "absoluteRenderBounds": {
                      "x": 29709,
                      "y": 88718,
                      "width": 70.75,
                      "height": 42
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "layoutSizingHorizontal": "FIXED",
                    "layoutSizingVertical": "HUG",
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 29687,
                  "y": 88700,
                  "width": 500,
                  "height": 78
                },
                "absoluteRenderBounds": {
                  "x": 29687,
                  "y": 88700,
                  "width": 500,
                  "height": 78
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "398:31965",
                "name": "Group 1410104483",
                "type": "INSTANCE",
                "scrollBehavior": "SCROLLS",
                "componentId": "398:31946",
                "overrides": [
                  {
                    "id": "398:31965",
                    "overriddenFields": ["name"]
                  },
                  {
                    "id": "I398:31965;398:31952",
                    "overriddenFields": [
                      "characterStyleOverrides",
                      "characters",
                      "lineIndentations",
                      "lineTypes",
                      "styleOverrideTable"
                    ]
                  },
                  {
                    "id": "I398:31965;398:31954",
                    "overriddenFields": [
                      "characterStyleOverrides",
                      "characters",
                      "lineIndentations",
                      "lineTypes",
                      "styleOverrideTable"
                    ]
                  }
                ],
                "children": [
                  {
                    "id": "I398:31965;398:31947",
                    "name": "Rectangle 34626009",
                    "type": "RECTANGLE",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.7680059671401978,
                          "g": 0.7680059671401978,
                          "b": 0.7680059671401978,
                          "a": 1
                        }
                      }
                    ],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "cornerRadius": 16,
                    "cornerSmoothing": 0,
                    "absoluteBoundingBox": {
                      "x": 30201,
                      "y": 88700,
                      "width": 500,
                      "height": 78
                    },
                    "absoluteRenderBounds": {
                      "x": 30201,
                      "y": 88700,
                      "width": 500,
                      "height": 78
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "I398:31965;398:31948",
                    "name": "Frame",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "I398:31965;398:31949",
                        "name": "Vector",
                        "type": "VECTOR",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.7333333492279053,
                              "g": 0.7333333492279053,
                              "b": 0.7333333492279053,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 0.1953125,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 30643.068359375,
                          "y": 88728.7890625,
                          "width": 33.856929779052734,
                          "height": 20.43496322631836
                        },
                        "absoluteRenderBounds": {
                          "x": 30643.068359375,
                          "y": 88728.7890625,
                          "width": 33.857421875,
                          "height": 20.4375
                        },
                        "constraints": {
                          "vertical": "SCALE",
                          "horizontal": "SCALE"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": true,
                    "background": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 30643,
                      "y": 88722,
                      "width": 34,
                      "height": 34
                    },
                    "absoluteRenderBounds": {
                      "x": 30643,
                      "y": 88722,
                      "width": 34,
                      "height": 34
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "I398:31965;398:31950",
                    "name": "Frame 1410086320",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "I398:31965;398:31951",
                        "name": "Frame 1410086319",
                        "type": "FRAME",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "I398:31965;398:31952",
                            "name": "早恋",
                            "type": "TEXT",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0,
                                  "g": 0,
                                  "b": 0,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "OUTSIDE",
                            "absoluteBoundingBox": {
                              "x": 30223,
                              "y": 88718,
                              "width": 56,
                              "height": 20
                            },
                            "absoluteRenderBounds": {
                              "x": 30223.783203125,
                              "y": 88721.4765625,
                              "width": 54.65625,
                              "height": 12.9921875
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "HUG",
                            "layoutSizingVertical": "HUG",
                            "characters": "露骨低俗",
                            "characterStyleOverrides": [],
                            "styleOverrideTable": {},
                            "lineTypes": ["NONE"],
                            "lineIndentations": [0],
                            "style": {
                              "fontFamily": "PingFang SC",
                              "fontPostScriptName": "PingFangSC-Medium",
                              "fontStyle": "Medium",
                              "fontWeight": 500,
                              "textAutoResize": "WIDTH_AND_HEIGHT",
                              "fontSize": 14,
                              "textAlignHorizontal": "LEFT",
                              "textAlignVertical": "CENTER",
                              "letterSpacing": 0,
                              "lineHeightPx": 19.600000381469727,
                              "lineHeightPercent": 100,
                              "lineHeightUnit": "INTRINSIC_%"
                            },
                            "layoutVersion": 4,
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "I398:31965;398:31953",
                            "name": "Vector 585",
                            "type": "VECTOR",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [],
                            "fillOverrideTable": {
                              "1": null
                            },
                            "strokes": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 0.4000000059604645,
                                  "g": 0.4000000059604645,
                                  "b": 0.4000000059604645,
                                  "a": 1
                                }
                              }
                            ],
                            "strokeWeight": 1.5,
                            "strokeAlign": "CENTER",
                            "strokeJoin": "ROUND",
                            "strokeCap": "ROUND",
                            "absoluteBoundingBox": {
                              "x": 30289,
                              "y": 88724,
                              "width": 4,
                              "height": 8
                            },
                            "absoluteRenderBounds": {
                              "x": 30288.25,
                              "y": 88723.25,
                              "width": 5.5,
                              "height": 9.5
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "layoutAlign": "INHERIT",
                            "layoutGrow": 0,
                            "layoutSizingHorizontal": "FIXED",
                            "layoutSizingVertical": "FIXED",
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "layoutMode": "HORIZONTAL",
                        "primaryAxisSizingMode": "FIXED",
                        "counterAxisAlignItems": "CENTER",
                        "itemSpacing": 10,
                        "layoutWrap": "NO_WRAP",
                        "absoluteBoundingBox": {
                          "x": 30223,
                          "y": 88718,
                          "width": 70,
                          "height": 20
                        },
                        "absoluteRenderBounds": {
                          "x": 30223,
                          "y": 88718,
                          "width": 70.75,
                          "height": 20
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "I398:31965;398:31954",
                        "name": "8 个关键词",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.6000000238418579,
                              "g": 0.6000000238418579,
                              "b": 0.6000000238418579,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 30223,
                          "y": 88743,
                          "width": 70,
                          "height": 17
                        },
                        "absoluteRenderBounds": {
                          "x": 30223.52734375,
                          "y": 88746.109375,
                          "width": 62.49609375,
                          "height": 11.078125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "layoutAlign": "STRETCH",
                        "layoutGrow": 0,
                        "layoutSizingHorizontal": "FILL",
                        "layoutSizingVertical": "HUG",
                        "characters": "13 个关键词",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Regular",
                          "fontStyle": "Regular",
                          "fontWeight": 400,
                          "textAutoResize": "HEIGHT",
                          "fontSize": 12,
                          "textAlignHorizontal": "LEFT",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 16.799999237060547,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 4,
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "layoutMode": "VERTICAL",
                    "counterAxisSizingMode": "FIXED",
                    "itemSpacing": 5,
                    "layoutWrap": "NO_WRAP",
                    "absoluteBoundingBox": {
                      "x": 30223,
                      "y": 88718,
                      "width": 70,
                      "height": 42
                    },
                    "absoluteRenderBounds": {
                      "x": 30223,
                      "y": 88718,
                      "width": 70.75,
                      "height": 42
                    },
                    "constraints": {
                      "vertical": "SCALE",
                      "horizontal": "SCALE"
                    },
                    "layoutSizingHorizontal": "FIXED",
                    "layoutSizingVertical": "HUG",
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 30201,
                  "y": 88700,
                  "width": 500,
                  "height": 78
                },
                "absoluteRenderBounds": {
                  "x": 30201,
                  "y": 88700,
                  "width": 500,
                  "height": 78
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "398:31966",
                "name": "Group 1410104484",
                "type": "GROUP",
                "scrollBehavior": "SCROLLS",
                "children": [
                  {
                    "id": "398:31967",
                    "name": "Rectangle 34626012",
                    "type": "RECTANGLE",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.95686274766922,
                          "g": 0.9529411792755127,
                          "b": 0.9647058844566345,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "cornerRadius": 16,
                    "cornerSmoothing": 0,
                    "absoluteBoundingBox": {
                      "x": 29173,
                      "y": 88592,
                      "width": 1528,
                      "height": 88
                    },
                    "absoluteRenderBounds": {
                      "x": 29173,
                      "y": 88592,
                      "width": 1528,
                      "height": 88
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31968",
                    "name": "Group 1410104477",
                    "type": "GROUP",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31969",
                        "name": "Rectangle 34626011",
                        "type": "RECTANGLE",
                        "scrollBehavior": "SCROLLS",
                        "boundVariables": {
                          "fills": [
                            {
                              "type": "VARIABLE_ALIAS",
                              "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                            }
                          ]
                        },
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.1411764770746231,
                              "g": 0.7803921699523926,
                              "b": 0.5647059082984924,
                              "a": 1
                            },
                            "boundVariables": {
                              "color": {
                                "type": "VARIABLE_ALIAS",
                                "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                              }
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "cornerRadius": 3,
                        "cornerSmoothing": 0,
                        "absoluteBoundingBox": {
                          "x": 29197,
                          "y": 88612,
                          "width": 5,
                          "height": 18
                        },
                        "absoluteRenderBounds": {
                          "x": 29197,
                          "y": 88612,
                          "width": 5,
                          "height": 18
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "398:31970",
                        "name": "已添加关键词",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0,
                              "g": 0,
                              "b": 0,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 29210,
                          "y": 88610,
                          "width": 96,
                          "height": 22
                        },
                        "absoluteRenderBounds": {
                          "x": 29211.34375,
                          "y": 88613.8125,
                          "width": 93.552734375,
                          "height": 14.9765625
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "characters": "已添加关键词",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Semibold",
                          "fontStyle": "Semibold",
                          "fontWeight": 600,
                          "textAutoResize": "WIDTH_AND_HEIGHT",
                          "fontSize": 16,
                          "textAlignHorizontal": "LEFT",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 22.399999618530273,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 4,
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "cornerRadius": 3,
                    "cornerSmoothing": 0,
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 29197,
                      "y": 88610,
                      "width": 109,
                      "height": 22
                    },
                    "absoluteRenderBounds": {
                      "x": 29197,
                      "y": 88610,
                      "width": 109,
                      "height": 22
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31971",
                    "name": "添加自定义关键词,启动分类即可检测分类下的关键词。",
                    "type": "TEXT",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.6000000238418579,
                          "g": 0.6000000238418579,
                          "b": 0.6000000238418579,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "OUTSIDE",
                    "absoluteBoundingBox": {
                      "x": 29197,
                      "y": 88642,
                      "width": 350,
                      "height": 20
                    },
                    "absoluteRenderBounds": {
                      "x": 29197.615234375,
                      "y": 88645.4375,
                      "width": 340.705078125,
                      "height": 13.8203125
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "characters": "添加自定义关键词,启动分类即可检测分类下的关键词。",
                    "characterStyleOverrides": [],
                    "styleOverrideTable": {},
                    "lineTypes": ["NONE"],
                    "lineIndentations": [0],
                    "style": {
                      "fontFamily": "PingFang SC",
                      "fontPostScriptName": "PingFangSC-Regular",
                      "fontStyle": "Regular",
                      "fontWeight": 400,
                      "textAutoResize": "WIDTH_AND_HEIGHT",
                      "fontSize": 14,
                      "textAlignHorizontal": "LEFT",
                      "textAlignVertical": "CENTER",
                      "letterSpacing": 0,
                      "lineHeightPx": 19.600000381469727,
                      "lineHeightPercent": 100,
                      "lineHeightUnit": "INTRINSIC_%"
                    },
                    "layoutVersion": 5,
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31972",
                    "name": "4/20",
                    "type": "TEXT",
                    "scrollBehavior": "SCROLLS",
                    "blendMode": "PASS_THROUGH",
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.6000000238418579,
                          "g": 0.6000000238418579,
                          "b": 0.6000000238418579,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "OUTSIDE",
                    "absoluteBoundingBox": {
                      "x": 29314,
                      "y": 88611,
                      "width": 33,
                      "height": 20
                    },
                    "absoluteRenderBounds": {
                      "x": 29314.3359375,
                      "y": 88614.5234375,
                      "width": 31.15234375,
                      "height": 12.875
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "characters": "4/20",
                    "characterStyleOverrides": [],
                    "styleOverrideTable": {},
                    "lineTypes": ["NONE"],
                    "lineIndentations": [0],
                    "style": {
                      "fontFamily": "PingFang SC",
                      "fontPostScriptName": "PingFangSC-Regular",
                      "fontStyle": "Regular",
                      "fontWeight": 400,
                      "textAutoResize": "WIDTH_AND_HEIGHT",
                      "fontSize": 14,
                      "textAlignHorizontal": "LEFT",
                      "textAlignVertical": "CENTER",
                      "letterSpacing": 0,
                      "lineHeightPx": 19.600000381469727,
                      "lineHeightPercent": 100,
                      "lineHeightUnit": "INTRINSIC_%"
                    },
                    "layoutVersion": 4,
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31973",
                    "name": "Link",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "boundVariables": {
                      "fills": [
                        {
                          "type": "VARIABLE_ALIAS",
                          "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                        }
                      ]
                    },
                    "children": [
                      {
                        "id": "398:31974",
                        "name": "Group 1410104508",
                        "type": "GROUP",
                        "scrollBehavior": "SCROLLS",
                        "children": [
                          {
                            "id": "398:31975",
                            "name": "AI生成关键词",
                            "type": "TEXT",
                            "scrollBehavior": "SCROLLS",
                            "blendMode": "PASS_THROUGH",
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "OUTSIDE",
                            "absoluteBoundingBox": {
                              "x": 30556,
                              "y": 88627,
                              "width": 86,
                              "height": 16
                            },
                            "absoluteRenderBounds": {
                              "x": 30556.525390625,
                              "y": 88628.1953125,
                              "width": 84.0703125,
                              "height": 13.0234375
                            },
                            "constraints": {
                              "vertical": "CENTER",
                              "horizontal": "CENTER"
                            },
                            "characters": "AI生成关键词",
                            "characterStyleOverrides": [],
                            "styleOverrideTable": {},
                            "lineTypes": ["NONE"],
                            "lineIndentations": [0],
                            "style": {
                              "fontFamily": "Roboto",
                              "fontPostScriptName": "Roboto-Regular",
                              "fontStyle": "Regular",
                              "fontWeight": 400,
                              "textAutoResize": "WIDTH_AND_HEIGHT",
                              "fontSize": 14,
                              "textAlignHorizontal": "CENTER",
                              "textAlignVertical": "CENTER",
                              "letterSpacing": 0.4000000059604645,
                              "lineHeightPx": 16,
                              "lineHeightPercent": 97.52381134033203,
                              "lineHeightPercentFontSize": 114.28571319580078,
                              "lineHeightUnit": "PIXELS"
                            },
                            "layoutVersion": 4,
                            "effects": [],
                            "interactions": []
                          },
                          {
                            "id": "398:31976",
                            "name": "Frame",
                            "type": "FRAME",
                            "scrollBehavior": "SCROLLS",
                            "children": [
                              {
                                "id": "398:31977",
                                "name": "Vector",
                                "type": "VECTOR",
                                "scrollBehavior": "SCROLLS",
                                "blendMode": "PASS_THROUGH",
                                "fills": [
                                  {
                                    "blendMode": "NORMAL",
                                    "type": "SOLID",
                                    "color": {
                                      "r": 1,
                                      "g": 1,
                                      "b": 1,
                                      "a": 1
                                    }
                                  }
                                ],
                                "strokes": [],
                                "strokeWeight": 0.1953125,
                                "strokeAlign": "INSIDE",
                                "absoluteBoundingBox": {
                                  "x": 30530.833984375,
                                  "y": 88625.8359375,
                                  "width": 18.333126068115234,
                                  "height": 18.334999084472656
                                },
                                "absoluteRenderBounds": {
                                  "x": 30530.833984375,
                                  "y": 88625.8359375,
                                  "width": 18.333984375,
                                  "height": 18.3359375
                                },
                                "constraints": {
                                  "vertical": "SCALE",
                                  "horizontal": "SCALE"
                                },
                                "effects": [],
                                "interactions": []
                              }
                            ],
                            "blendMode": "PASS_THROUGH",
                            "clipsContent": true,
                            "background": [
                              {
                                "blendMode": "NORMAL",
                                "visible": false,
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "fills": [
                              {
                                "blendMode": "NORMAL",
                                "visible": false,
                                "type": "SOLID",
                                "color": {
                                  "r": 1,
                                  "g": 1,
                                  "b": 1,
                                  "a": 1
                                }
                              }
                            ],
                            "strokes": [],
                            "strokeWeight": 1,
                            "strokeAlign": "INSIDE",
                            "backgroundColor": {
                              "r": 0,
                              "g": 0,
                              "b": 0,
                              "a": 0
                            },
                            "absoluteBoundingBox": {
                              "x": 30530,
                              "y": 88625,
                              "width": 20,
                              "height": 20
                            },
                            "absoluteRenderBounds": {
                              "x": 30530,
                              "y": 88625,
                              "width": 20,
                              "height": 20
                            },
                            "constraints": {
                              "vertical": "TOP",
                              "horizontal": "LEFT"
                            },
                            "effects": [],
                            "interactions": []
                          }
                        ],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": false,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 30530,
                          "y": 88625,
                          "width": 112,
                          "height": 20
                        },
                        "absoluteRenderBounds": {
                          "x": 30530,
                          "y": 88625,
                          "width": 112,
                          "height": 20
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.1411764770746231,
                          "g": 0.7803921699523926,
                          "b": 0.5647059082984924,
                          "a": 1
                        },
                        "boundVariables": {
                          "color": {
                            "type": "VARIABLE_ALIAS",
                            "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                          }
                        }
                      }
                    ],
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 0.1411764770746231,
                          "g": 0.7803921699523926,
                          "b": 0.5647059082984924,
                          "a": 1
                        },
                        "boundVariables": {
                          "color": {
                            "type": "VARIABLE_ALIAS",
                            "id": "VariableID:926747ab970a552aee35a6ed34090251e61d5ed8/70:4"
                          }
                        }
                      }
                    ],
                    "strokes": [],
                    "cornerRadius": 8,
                    "cornerSmoothing": 0,
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0.1411764770746231,
                      "g": 0.7803921699523926,
                      "b": 0.5647059082984924,
                      "a": 1
                    },
                    "absoluteBoundingBox": {
                      "x": 30501,
                      "y": 88615,
                      "width": 170,
                      "height": 42
                    },
                    "absoluteRenderBounds": {
                      "x": 30501,
                      "y": 88615,
                      "width": 170,
                      "height": 42
                    },
                    "constraints": {
                      "vertical": "CENTER",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31978",
                    "name": "Link",
                    "type": "FRAME",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31979",
                        "name": "添加自定义关键词",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.20000000298023224,
                              "g": 0.20000000298023224,
                              "b": 0.20000000298023224,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 30324,
                          "y": 88628,
                          "width": 115,
                          "height": 16
                        },
                        "absoluteRenderBounds": {
                          "x": 30324.6328125,
                          "y": 88629.1875,
                          "width": 113.189453125,
                          "height": 13
                        },
                        "constraints": {
                          "vertical": "CENTER",
                          "horizontal": "CENTER"
                        },
                        "characters": "添加自定义关键词",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "Roboto",
                          "fontPostScriptName": "Roboto-Regular",
                          "fontStyle": "Regular",
                          "fontWeight": 400,
                          "textAutoResize": "WIDTH_AND_HEIGHT",
                          "fontSize": 14,
                          "textAlignHorizontal": "CENTER",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0.4000000059604645,
                          "lineHeightPx": 16,
                          "lineHeightPercent": 97.52381134033203,
                          "lineHeightPercentFontSize": 114.28571319580078,
                          "lineHeightUnit": "PIXELS"
                        },
                        "layoutVersion": 4,
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "398:31980",
                        "name": "Container",
                        "type": "FRAME",
                        "scrollBehavior": "SCROLLS",
                        "children": [],
                        "blendMode": "PASS_THROUGH",
                        "clipsContent": true,
                        "background": [],
                        "fills": [],
                        "strokes": [],
                        "cornerRadius": 8,
                        "cornerSmoothing": 0,
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "backgroundColor": {
                          "r": 0,
                          "g": 0,
                          "b": 0,
                          "a": 0
                        },
                        "absoluteBoundingBox": {
                          "x": 30281,
                          "y": 88615,
                          "width": 200,
                          "height": 42
                        },
                        "absoluteRenderBounds": {
                          "x": 30281,
                          "y": 88615,
                          "width": 200,
                          "height": 42
                        },
                        "constraints": {
                          "vertical": "TOP_BOTTOM",
                          "horizontal": "LEFT_RIGHT"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "fills": [
                      {
                        "blendMode": "NORMAL",
                        "type": "SOLID",
                        "color": {
                          "r": 1,
                          "g": 1,
                          "b": 1,
                          "a": 1
                        }
                      }
                    ],
                    "strokes": [
                      {
                        "blendMode": "NORMAL",
                        "visible": false,
                        "type": "SOLID",
                        "color": {
                          "r": 0.7680059671401978,
                          "g": 0.7680059671401978,
                          "b": 0.7680059671401978,
                          "a": 1
                        }
                      }
                    ],
                    "cornerRadius": 8,
                    "cornerSmoothing": 0,
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 1,
                      "g": 1,
                      "b": 1,
                      "a": 1
                    },
                    "absoluteBoundingBox": {
                      "x": 30281,
                      "y": 88615,
                      "width": 200,
                      "height": 42
                    },
                    "absoluteRenderBounds": {
                      "x": 30281,
                      "y": 88615,
                      "width": 200,
                      "height": 42
                    },
                    "constraints": {
                      "vertical": "CENTER",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "rectangleCornerRadii": [0, 0, 0, 0],
                "cornerSmoothing": 0,
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 29173,
                  "y": 88592,
                  "width": 1528,
                  "height": 88
                },
                "absoluteRenderBounds": {
                  "x": 29173,
                  "y": 88592,
                  "width": 1528,
                  "height": 88
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "398:31981",
                "name": "Vector 512 (Stroke)",
                "type": "VECTOR",
                "scrollBehavior": "SCROLLS",
                "rotation": 8.742277657347563e-8,
                "blendMode": "PASS_THROUGH",
                "fills": [
                  {
                    "opacity": 0.20000000298023224,
                    "blendMode": "NORMAL",
                    "type": "SOLID",
                    "color": {
                      "r": 0.25882354378700256,
                      "g": 0.5843137502670288,
                      "b": 0.5333333611488342,
                      "a": 1
                    }
                  }
                ],
                "strokes": [],
                "strokeWeight": 1,
                "strokeAlign": "CENTER",
                "absoluteBoundingBox": {
                  "x": 29146.99999991259,
                  "y": 88571,
                  "width": 1580.0000000874097,
                  "height": 1.000000024025212
                },
                "absoluteRenderBounds": {
                  "x": 29147,
                  "y": 88571,
                  "width": 1580,
                  "height": 1
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              },
              {
                "id": "398:31982",
                "name": "Group 1410104526",
                "type": "GROUP",
                "scrollBehavior": "SCROLLS",
                "children": [
                  {
                    "id": "398:31983",
                    "name": "Group 1410104524",
                    "type": "GROUP",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31984",
                        "name": "Add Keywords",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "boundVariables": {
                          "fills": [
                            {
                              "type": "VARIABLE_ALIAS",
                              "id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
                            }
                          ]
                        },
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0,
                              "g": 0.5882353186607361,
                              "b": 0.38823530077934265,
                              "a": 1
                            },
                            "boundVariables": {
                              "color": {
                                "type": "VARIABLE_ALIAS",
                                "id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
                              }
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 29802,
                          "y": 88530,
                          "width": 111,
                          "height": 22
                        },
                        "absoluteRenderBounds": {
                          "x": 29802.296875,
                          "y": 88535.3515625,
                          "width": 109.919921875,
                          "height": 14.8203125
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "characters": "Add Keywords",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Semibold",
                          "fontStyle": "Semibold",
                          "fontWeight": 600,
                          "textAutoResize": "WIDTH_AND_HEIGHT",
                          "fontSize": 16,
                          "textAlignHorizontal": "CENTER",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 22.399999618530273,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 5,
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "398:31985",
                        "name": "Rectangle 34626003",
                        "type": "RECTANGLE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.1411764770746231,
                              "g": 0.7803921699523926,
                              "b": 0.5647059082984924,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 29777,
                          "y": 88568,
                          "width": 160,
                          "height": 3
                        },
                        "absoluteRenderBounds": {
                          "x": 29777,
                          "y": 88568,
                          "width": 160,
                          "height": 3
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 29777,
                      "y": 88530,
                      "width": 160,
                      "height": 41
                    },
                    "absoluteRenderBounds": {
                      "x": 29777,
                      "y": 88530,
                      "width": 160,
                      "height": 41
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  },
                  {
                    "id": "398:31986",
                    "name": "Group 1410104525",
                    "type": "GROUP",
                    "scrollBehavior": "SCROLLS",
                    "children": [
                      {
                        "id": "398:31987",
                        "name": "Detected Alerts",
                        "type": "TEXT",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 0.4000000059604645,
                              "g": 0.4000000059604645,
                              "b": 0.4000000059604645,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "OUTSIDE",
                        "absoluteBoundingBox": {
                          "x": 29959,
                          "y": 88530,
                          "width": 116,
                          "height": 22
                        },
                        "absoluteRenderBounds": {
                          "x": 29960.39453125,
                          "y": 88535.3515625,
                          "width": 113.853515625,
                          "height": 11.875
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "characters": "Detected Alerts",
                        "characterStyleOverrides": [],
                        "styleOverrideTable": {},
                        "lineTypes": ["NONE"],
                        "lineIndentations": [0],
                        "style": {
                          "fontFamily": "PingFang SC",
                          "fontPostScriptName": "PingFangSC-Regular",
                          "fontStyle": "Regular",
                          "fontWeight": 400,
                          "textAutoResize": "WIDTH_AND_HEIGHT",
                          "fontSize": 16,
                          "textAlignHorizontal": "CENTER",
                          "textAlignVertical": "CENTER",
                          "letterSpacing": 0,
                          "lineHeightPx": 22.399999618530273,
                          "lineHeightPercent": 100,
                          "lineHeightUnit": "INTRINSIC_%"
                        },
                        "layoutVersion": 5,
                        "effects": [],
                        "interactions": []
                      },
                      {
                        "id": "398:31988",
                        "name": "Rectangle 34626001",
                        "type": "RECTANGLE",
                        "scrollBehavior": "SCROLLS",
                        "blendMode": "PASS_THROUGH",
                        "fills": [
                          {
                            "blendMode": "NORMAL",
                            "type": "SOLID",
                            "color": {
                              "r": 1,
                              "g": 1,
                              "b": 1,
                              "a": 1
                            }
                          }
                        ],
                        "strokes": [],
                        "strokeWeight": 1,
                        "strokeAlign": "INSIDE",
                        "absoluteBoundingBox": {
                          "x": 29937,
                          "y": 88568,
                          "width": 160,
                          "height": 3
                        },
                        "absoluteRenderBounds": {
                          "x": 29937,
                          "y": 88568,
                          "width": 160,
                          "height": 3
                        },
                        "constraints": {
                          "vertical": "TOP",
                          "horizontal": "LEFT"
                        },
                        "effects": [],
                        "interactions": []
                      }
                    ],
                    "blendMode": "PASS_THROUGH",
                    "clipsContent": false,
                    "background": [],
                    "fills": [],
                    "strokes": [],
                    "strokeWeight": 1,
                    "strokeAlign": "INSIDE",
                    "backgroundColor": {
                      "r": 0,
                      "g": 0,
                      "b": 0,
                      "a": 0
                    },
                    "absoluteBoundingBox": {
                      "x": 29937,
                      "y": 88530,
                      "width": 160,
                      "height": 41
                    },
                    "absoluteRenderBounds": {
                      "x": 29937,
                      "y": 88530,
                      "width": 160,
                      "height": 41
                    },
                    "constraints": {
                      "vertical": "TOP",
                      "horizontal": "LEFT"
                    },
                    "effects": [],
                    "interactions": []
                  }
                ],
                "blendMode": "PASS_THROUGH",
                "clipsContent": false,
                "background": [],
                "fills": [],
                "strokes": [],
                "strokeWeight": 1,
                "strokeAlign": "INSIDE",
                "backgroundColor": {
                  "r": 0,
                  "g": 0,
                  "b": 0,
                  "a": 0
                },
                "absoluteBoundingBox": {
                  "x": 29777,
                  "y": 88530,
                  "width": 320,
                  "height": 41
                },
                "absoluteRenderBounds": {
                  "x": 29777,
                  "y": 88530,
                  "width": 320,
                  "height": 41
                },
                "constraints": {
                  "vertical": "TOP",
                  "horizontal": "LEFT"
                },
                "effects": [],
                "interactions": []
              }
            ],
            "blendMode": "PASS_THROUGH",
            "clipsContent": false,
            "background": [],
            "fills": [],
            "strokes": [],
            "rectangleCornerRadii": [0, 0, 0, 0],
            "cornerSmoothing": 0,
            "strokeWeight": 1,
            "strokeAlign": "INSIDE",
            "backgroundColor": {
              "r": 0,
              "g": 0,
              "b": 0,
              "a": 0
            },
            "absoluteBoundingBox": {
              "x": 29147,
              "y": 88530,
              "width": 1580,
              "height": 340
            },
            "absoluteRenderBounds": {
              "x": 29147,
              "y": 88530,
              "width": 1580,
              "height": 340
            },
            "constraints": {
              "vertical": "TOP",
              "horizontal": "LEFT"
            },
            "exportSettings": [
              {
                "suffix": "",
                "format": "PNG",
                "constraint": {
                  "type": "SCALE",
                  "value": 1
                }
              }
            ],
            "effects": [],
            "interactions": []
          }
        ],
        "blendMode": "PASS_THROUGH",
        "clipsContent": false,
        "background": [],
        "fills": [],
        "strokes": [],
        "rectangleCornerRadii": [0, 0, 0, 0],
        "cornerSmoothing": 0,
        "strokeWeight": 1,
        "strokeAlign": "INSIDE",
        "backgroundColor": {
          "r": 0,
          "g": 0,
          "b": 0,
          "a": 0
        },
        "absoluteBoundingBox": {
          "x": 29147,
          "y": 88511,
          "width": 1580,
          "height": 895
        },
        "absoluteRenderBounds": {
          "x": 29147,
          "y": 88511,
          "width": 1580,
          "height": 895
        },
        "constraints": {
          "vertical": "TOP",
          "horizontal": "LEFT"
        },
        "exportSettings": [
          {
            "suffix": "",
            "format": "PNG",
            "constraint": {
              "type": "SCALE",
              "value": 1
            }
          }
        ],
        "effects": [],
        "interactions": []
      },
      "components": {
        "398:31946": {
          "key": "447b49e8d7d27a406eb29889438235ec277fba87",
          "name": "Group 1410104481",
          "description": "",
          "remote": false,
          "documentationLinks": []
        }
      },
      "componentSets": {},
      "schemaVersion": 0,
      "styles": {}
    }
  }
}

```
Page 5/6FirstPrevNextLast